:root {
  --bg: #f6f0e5;
  --bg-soft: #efe5d4;
  --surface: rgba(255, 248, 238, 0.82);
  --surface-strong: #fffaf2;
  --text: #1f1a17;
  --muted: #6c6156;
  --accent: #8a5a2b;
  --accent-deep: #5e3b1d;
  --line: rgba(31, 26, 23, 0.12);
  --hero-shadow: rgba(15, 10, 7, 0.28);
}

* {
  box-sizing: border-box;
}

/* ── Bannière ── */
.site-banner[hidden] {
  display: none;
}

.site-banner {
  position: relative;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 3.5rem;
  background: var(--accent-deep);
  color: #fff8ef;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.5;
}

.banner-text {
  margin: 0;
}

.banner-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  background: rgba(255, 248, 238, 0.15);
  border: none;
  border-radius: 50%;
  color: #fff8ef;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 180ms ease;
}

.banner-close:hover {
  background: rgba(255, 248, 238, 0.28);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.4), transparent 30%),
    linear-gradient(180deg, #f7f1e7 0%, #f2e8d8 100%);
  color: var(--text);
  text-align: center;
}

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

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 2rem;
  color: #fff8ef;
  text-align: left;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.38), transparent);
  z-index: -1;
  pointer-events: none;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.05rem;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.9;
}

.brand-mark {
  font-size: 1.1rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.brand-name {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
}

.main-nav {
  display: flex;
  gap: 1.4rem;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(255, 248, 238, 0.35);
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.1);
  backdrop-filter: blur(10px);
  color: #fff8ef;
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.lang-toggle:hover,
.lang-toggle:focus-visible {
  background: rgba(255, 248, 238, 0.2);
  border-color: rgba(255, 248, 238, 0.6);
}

.nav-footer {
  display: none;
}

.nav-close {
  display: none;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  padding: 0;
  border: 1px solid rgba(255, 248, 238, 0.35);
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.1);
  backdrop-filter: blur(10px);
  color: #fff8ef;
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  width: 1.1rem;
  height: 1px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-0.32rem);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(0.32rem);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 2rem 3rem;
  overflow: hidden;
  isolation: isolate;
  background: #2b2118;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(23, 17, 10, 0.12), rgba(18, 13, 8, 0.46)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 50%),
    radial-gradient(circle at top right, rgba(238, 190, 122, 0.18), transparent 24%);
}

.hero-content {
  position: relative;
  max-width: 48rem;
  color: #fffaf4;
  z-index: 2;
  margin: 0 auto;
  animation: heroRise 1s ease both;
}

.eyebrow {
  margin: 0 0 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.76rem;
  color: inherit;
  opacity: 0.88;
}

.hero h1,
.section-heading h2,
.menu-card h3,
.team-card h3,
.contact-card h3 {
  font-family: "Cormorant Garamond", serif;
}

.hero h1 {
  margin: 0;
  font-size: clamp(4rem, 10vw, 7.5rem);
  line-height: 0.9;
  font-weight: 600;
  text-wrap: balance;
}

.hero-text {
  max-width: 35rem;
  margin: 1rem auto 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 248, 238, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.4rem;
  color: rgba(255, 248, 238, 0.7);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 180ms ease;
}

.hero-phone:hover {
  color: #fff8ef;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--surface-strong);
  color: var(--accent-deep);
}

.button-secondary {
  border-color: rgba(255, 248, 238, 0.65);
  color: #fff8ef;
  background: rgba(255, 248, 238, 0.08);
  backdrop-filter: blur(6px);
}

.section {
  padding: 6rem 2rem;
}

.section-heading {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

.section-heading .eyebrow {
  color: var(--accent);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 0.95;
  font-weight: 600;
  text-wrap: balance;
}

.intro-grid,
.contact-grid,
.team-grid,
.menu-grid {
  display: grid;
  gap: 1.5rem;
}

.intro-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 64rem;
  margin: 0 auto;
}

.hours-card,
.menu-note,
.menu-card,
.team-card,
.contact-card {
  background: var(--surface);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 1.6rem;
  box-shadow: 0 1.5rem 3rem -2rem var(--hero-shadow);
}

.hours-card {
  max-width: 58rem;
  margin: 0 auto;
  overflow: hidden;
}

.menu-note {
  max-width: 50rem;
  margin: 0 auto;
  padding: 2.5rem 2rem;
}

.menu-note p {
  margin: 0 auto 1rem;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.9;
}

.menu-note p:last-child {
  margin-bottom: 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--line);
}

.hours-row:last-child {
  border-bottom: 0;
}

.hours-row span:first-child {
  font-weight: 700;
}

.hours-row span:last-child {
  color: var(--muted);
  text-align: right;
}

.team-grid,
.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 72rem;
  margin: 0 auto;
}

.team-card,
.contact-card {
  padding: 1.7rem;
}

.team-card {
  overflow: hidden;
  padding: 0;
}

.team-photo {
  display: block;
  width: 100%;
  height: 20rem;
  object-fit: cover;
}

.team-body {
  padding: 1.5rem 1.5rem 1.7rem;
}

.team-card h3,
.contact-card h3 {
  margin: 0 0 1rem;
  font-size: 2rem;
  font-weight: 600;
}

.team-role {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.team-card p,
.contact-card p {
  margin: 0.5rem 0 0;
  line-height: 1.8;
  color: var(--muted);
}

.contact-card .button {
  margin-top: 1rem;
}

.map-card {
  position: relative;
  max-width: 72rem;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border-radius: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 1.5rem 3rem -2rem var(--hero-shadow);
  min-height: 28rem;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 28rem;
  border: 0;
  filter: sepia(0.24) saturate(0.85) contrast(0.95);
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--accent-deep);
  border: 4px solid #fffaf2;
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -100%) rotate(-45deg);
  z-index: 2;
  box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.22);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 0.25rem;
  background: #fffaf2;
  border-radius: 50%;
}

.map-label {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 250, 242, 0.88);
  color: var(--accent-deep);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
}

.map-label span {
  color: var(--muted);
  font-size: 0.92rem;
}

.reveal-item {
  opacity: 0;
  transform: translateY(40px) scale(0.985);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
  will-change: opacity, transform;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.intro-grid .reveal-item:nth-child(2),
.contact-grid .reveal-item:nth-child(2),
.team-grid .reveal-item:nth-child(2) {
  transition-delay: 120ms;
}

.contact-grid .reveal-item:nth-child(3),
.team-grid .reveal-item:nth-child(3) {
  transition-delay: 220ms;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content {
    animation: none;
  }

  .reveal-item,
  .reveal-item.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Avis clients ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

.review-card {
  background: var(--surface);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 1.6rem;
  box-shadow: 0 1.5rem 3rem -2rem var(--hero-shadow);
  padding: 1.8rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-stars {
  color: var(--accent);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
}

.review-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
  font-style: italic;
  flex: 1;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.review-author {
  font-weight: 700;
  font-size: 0.92rem;
}

.review-source {
  font-size: 0.78rem;
  color: var(--muted);
  background: var(--bg-soft);
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
}

.site-footer {
  padding: 0 2rem 2rem;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 960px) {
  .site-header {
    align-items: center;
    padding: 1.2rem;
  }

  .lang-toggle {
    display: none;
  }

  .nav-toggle {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 18;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 5rem 2rem 3rem;
    background: rgba(22, 15, 9, 0.97);
    backdrop-filter: blur(24px);
    border: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 260ms ease,
      transform 260ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    display: block;
    padding: 0.9rem 1.5rem;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 7vw, 2.8rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    color: rgba(255, 248, 238, 0.65);
    text-align: center;
    background: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 248, 238, 0.07);
    opacity: 0;
    transform: translateY(14px);
    transition:
      color 180ms ease,
      opacity 220ms ease,
      transform 220ms ease;
  }

  .main-nav a:last-of-type {
    border-bottom: none;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    color: #fff8ef;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav.is-open a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-close {
    display: flex;
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    border: 1px solid rgba(255, 248, 238, 0.25);
    border-radius: 50%;
    background: rgba(255, 248, 238, 0.08);
    color: #fff8ef;
    font-size: 1rem;
    cursor: pointer;
    transition: background 180ms ease, border-color 180ms ease;
  }

  .nav-close:hover {
    background: rgba(255, 248, 238, 0.18);
    border-color: rgba(255, 248, 238, 0.5);
  }

  .main-nav.is-open a:nth-child(2) { transition-delay: 80ms; }
  .main-nav.is-open a:nth-child(3) { transition-delay: 130ms; }
  .main-nav.is-open a:nth-child(4) { transition-delay: 180ms; }
  .main-nav.is-open a:nth-child(5) { transition-delay: 230ms; }

  .nav-footer {
    display: flex;
    margin-top: 2.5rem;
    opacity: 0;
    transform: translateY(14px);
    transition:
      opacity 220ms ease,
      transform 220ms ease;
  }

  .main-nav.is-open .nav-footer {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 290ms;
  }

  .nav-lang-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.6rem;
    border: 1px solid rgba(255, 248, 238, 0.25);
    border-radius: 999px;
    background: rgba(255, 248, 238, 0.07);
    color: rgba(255, 248, 238, 0.65);
    font-family: "Manrope", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    cursor: pointer;
    transition:
      background 180ms ease,
      border-color 180ms ease,
      color 180ms ease;
  }

  .nav-lang-toggle:hover,
  .nav-lang-toggle:focus-visible {
    background: rgba(255, 248, 238, 0.14);
    border-color: rgba(255, 248, 238, 0.45);
    color: #fff8ef;
  }

  .intro-grid,
  .team-grid,
  .contact-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: flex-end;
    padding: 11rem 1.2rem 2rem;
  }

  .section {
    padding: 4.5rem 1.2rem;
  }

  .map-card,
  .map-card iframe {
    min-height: 22rem;
    height: 22rem;
  }

  .team-photo {
    height: 16rem;
  }
}

@media (max-width: 640px) {
  .hours-row {
    flex-direction: column;
  }

  .hours-row span:last-child {
    text-align: left;
  }

  .hero h1 {
    font-size: 3.6rem;
  }

  .hero-text {
    font-size: 0.98rem;
    line-height: 1.7;
  }
}
