/* ─── RESET & BASE ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #0a0804;
  --black-soft: #111009;
  --gold:       #c8a855;
  --gold-light: #dfc07a;
  --gold-dim:   #8a7038;
  --cream:      #f0ead8;
  --cream-dim:  #a89f8a;
  --white:      #ffffff;

  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans:  'Inter', system-ui, sans-serif;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

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

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

sup { font-size: 0.6em; vertical-align: super; }

/* ─── UTILITY ──────────────────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-eyebrow {
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.section-eyebrow--light { color: var(--gold-light); }

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.btn--primary {
  background: transparent;
  color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold);
  color: var(--black);
}

.btn--full { width: 100%; text-align: center; }

/* ─── NAV ──────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
  background: rgba(10, 8, 4, 0.92);
  backdrop-filter: blur(16px);
  padding: 1rem 2.5rem;
  border-bottom: 1px solid rgba(200, 168, 85, 0.12);
}

.nav__left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__logo {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav__links a {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color var(--transition);
}

.nav__links a:hover { color: var(--gold); }

.nav__cta {
  border: 1px solid rgba(200, 168, 85, 0.5) !important;
  padding: 0.5rem 1.2rem !important;
  color: var(--gold) !important;
  transition: background var(--transition), color var(--transition) !important;
}

.nav__cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}

/* ─── LANG SWITCHER ────────────────────────────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  padding: 0.2rem 0;
  transition: color var(--transition);
  line-height: 1;
}

.lang-btn--cjk {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: none;
}

.lang-btn:hover { color: var(--gold-light); }

.lang-btn.active {
  color: var(--gold);
  border-bottom: 1px solid rgba(200, 168, 85, 0.5);
}

.lang-sep {
  color: rgba(200, 168, 85, 0.2);
  font-size: 0.65rem;
  user-select: none;
  line-height: 1;
}

/* ─────────────────────────────────────────────────────────────────────── */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: transform var(--transition), opacity var(--transition);
}

/* ─── HERO ─────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.hero.loaded .hero__img { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 8, 4, 0.92) 0%,
    rgba(10, 8, 4, 0.45) 45%,
    rgba(10, 8, 4, 0.15) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero__eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.hero__title {
  font-family: var(--ff-serif);
  font-size: clamp(5rem, 14vw, 11rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1;
  color: var(--cream);
}

.hero__title--accent { color: var(--gold); }

.hero__subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: -0.5rem;
}

.hero__stars {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.5rem 0;
}

.star {
  color: var(--gold);
  font-size: 1rem;
}

.hero__stars-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: var(--cream-dim);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── HISTOIRE ─────────────────────────────────────────────────────────── */
.histoire {
  padding: 8rem 0;
}

.histoire__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.histoire__body {
  font-size: 0.95rem;
  color: var(--cream-dim);
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.histoire__body em {
  font-style: italic;
  color: var(--gold-light);
}

.histoire__stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(200, 168, 85, 0.15);
}

.stat { text-align: center; }

.stat__num {
  display: block;
  font-family: var(--ff-serif);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.stat__divider {
  width: 1px;
  height: 40px;
  background: rgba(200, 168, 85, 0.2);
}

.histoire__image-col { position: relative; }

.histoire__frame {
  position: relative;
}

.histoire__img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  filter: brightness(0.75) saturate(1.1);
}

.histoire__frame-border {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  right: -1.5rem;
  bottom: -1.5rem;
  border: 1px solid rgba(200, 168, 85, 0.25);
  pointer-events: none;
  z-index: -1;
}

/* ─── MENU ─────────────────────────────────────────────────────────────── */
.menu {
  padding: 8rem 0;
  background: var(--black-soft);
}

.menu__prix {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-top: -1rem;
  margin-bottom: 4rem;
}

.menu-category {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  margin-top: 3rem;
}

.menu-category__label {
  font-family: var(--ff-serif);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gold);
  white-space: nowrap;
}

.menu-category__line {
  flex: 1;
  height: 1px;
  background: rgba(200, 168, 85, 0.15);
}

/* Dish grid */
.dish-grid {
  max-width: 1160px;
  margin: 0 auto 2rem;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.dish-card {
  position: relative;
  overflow: hidden;
  cursor: default;
}

.dish-card__img-wrap {
  position: relative;
  overflow: hidden;
}

.dish-photo {
  width: 100%;
  height: 340px;
  object-fit: cover;
  filter: brightness(0.72) saturate(1.1);
  transition: filter var(--transition), transform var(--transition);
}

.dish-card:hover .dish-photo {
  filter: brightness(0.88) saturate(1.2);
  transform: scale(1.03);
}

.dish-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,168,85,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.dish-card__body {
  padding: 1.5rem 1.5rem 2rem;
  background: rgba(17, 16, 9, 0.95);
  border-bottom: 1px solid rgba(200, 168, 85, 0.1);
}

.dish-card__course {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.dish-card__name {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.dish-card__desc {
  font-size: 0.8rem;
  color: var(--cream-dim);
  letter-spacing: 0.05em;
}

/* Menu items list */
.menu-items-list {
  border-top: 1px solid rgba(200, 168, 85, 0.08);
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(200, 168, 85, 0.08);
  gap: 2rem;
}

.menu-item--inline { flex-direction: column; align-items: flex-start; }

.menu-item__name {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.2rem;
}

.menu-item__desc {
  font-size: 0.8rem;
  color: var(--cream-dim);
}

.menu-item__tag {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200, 168, 85, 0.3);
  padding: 0.35rem 0.8rem;
  white-space: nowrap;
}

/* ─── SIGNATURE BANNER ─────────────────────────────────────────────────── */
.signature-banner {
  position: relative;
  height: 70vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.signature-banner__bg {
  position: absolute;
  inset: 0;
}

.signature-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.55) saturate(1.15);
  transition: transform 12s ease-out;
}

.signature-banner:hover .signature-banner__img {
  transform: scale(1.04);
}

.signature-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 8, 4, 0.7) 0%,
    rgba(10, 8, 4, 0.25) 60%,
    rgba(10, 8, 4, 0.5) 100%
  );
}

.signature-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
}

.signature-banner__title {
  font-family: var(--ff-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.signature-banner__desc {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--cream-dim);
  margin-bottom: 0.8rem;
  line-height: 2;
}

.signature-banner__note {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* ─── ÉQUIPE ────────────────────────────────────────────────────────────── */
.equipe {
  padding: 8rem 0;
}

.equipe__intro {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 4rem;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.team-card {
  padding: 2.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(200, 168, 85, 0.06);
  transition: background var(--transition), border-color var(--transition);
}

.team-card:hover {
  background: rgba(200, 168, 85, 0.04);
  border-color: rgba(200, 168, 85, 0.2);
}

.team-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 1.5rem;
  background: rgba(200, 168, 85, 0.04);
  border-color: rgba(200, 168, 85, 0.15);
  padding: 3rem;
}

.team-card--featured .team-card__name {
  font-size: 1.8rem;
}

.team-card--featured .team-card__bio {
  grid-column: 1 / -1;
}

.team-card__role {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.team-card__name {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.team-card__origin {
  font-size: 0.72rem;
  color: var(--gold-dim);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.team-card__bio {
  font-size: 0.83rem;
  color: var(--cream-dim);
  line-height: 1.7;
}

/* ─── RESERVATION ───────────────────────────────────────────────────────── */
.reservation {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.reservation__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.reservation__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: brightness(0.12) saturate(0.5);
}

.reservation__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 4, 0.75);
}

.reservation__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.reservation__title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.reservation__desc {
  font-size: 0.9rem;
  color: var(--cream-dim);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.reservation__details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.reservation__details li {
  font-size: 0.82rem;
  color: var(--cream-dim);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.reservation__detail-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Form */
.reservation__form-wrap {
  background: rgba(10, 8, 4, 0.8);
  border: 1px solid rgba(200, 168, 85, 0.12);
  padding: 3rem;
}

.reservation__form-title {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200, 168, 85, 0.15);
  color: var(--cream);
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: 0.88rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus {
  border-color: rgba(200, 168, 85, 0.5);
  background: rgba(200, 168, 85, 0.04);
}

.form-input::placeholder { color: rgba(168, 159, 138, 0.4); }

.form-select { cursor: pointer; }

.form-select option {
  background: #1a1710;
  color: var(--cream);
}

.form-textarea {
  resize: vertical;
  min-height: 90px;
}

.form-input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.4) sepia(1) saturate(3) hue-rotate(5deg);
  cursor: pointer;
}

.reservation__form-note {
  font-size: 0.7rem;
  color: var(--cream-dim);
  text-align: center;
  margin-top: 1rem;
  opacity: 0.6;
}

.reservation__success {
  text-align: center;
  padding: 4rem 2rem;
}

.reservation__success-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.reservation__success h3 {
  font-family: var(--ff-serif);
  font-size: 2rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

.reservation__success p {
  font-size: 0.9rem;
  color: var(--cream-dim);
  line-height: 1.8;
}

/* ─── FOOTER ────────────────────────────────────────────────────────────── */
.footer {
  background: #070605;
  border-top: 1px solid rgba(200, 168, 85, 0.1);
  padding: 5rem 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  padding-bottom: 4rem;
}

.footer__logo {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
}

.footer__tagline {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1.5rem;
}

.footer__address {
  font-size: 0.8rem;
  color: var(--cream-dim);
  line-height: 1.8;
}

.footer__col-title {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer__links-col ul { list-style: none; }

.footer__links-col li { margin-bottom: 0.6rem; }

.footer__links-col a {
  font-size: 0.82rem;
  color: var(--cream-dim);
  transition: color var(--transition);
}

.footer__links-col a:hover { color: var(--gold); }

.footer__contact {
  font-size: 0.82rem;
  color: var(--cream-dim);
  line-height: 2;
}

.footer__hours {
  color: var(--gold-dim);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

.footer__bottom {
  border-top: 1px solid rgba(200, 168, 85, 0.08);
  padding: 1.5rem 2rem;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  font-size: 0.7rem;
  color: rgba(168, 159, 138, 0.4);
  letter-spacing: 0.1em;
}

.footer__michelin { color: var(--gold-dim) !important; }

/* ─── SCROLL REVEAL ─────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── MOBILE NAV ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: 70vw;
    max-width: 320px;
    background: rgba(10, 8, 4, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    border-left: 1px solid rgba(200, 168, 85, 0.1);
    z-index: 200;
  }

  .nav__links.open { transform: translateX(0); }

  .nav__burger { display: flex; z-index: 201; }

  .nav__left { gap: 1rem; }

  .nav.menu-open .nav__burger span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
  .nav.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav.menu-open .nav__burger span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

  .histoire__inner { grid-template-columns: 1fr; gap: 3rem; }
  .histoire__image-col { order: -1; }
  .histoire__img { height: 320px; }

  .dish-grid { grid-template-columns: 1fr; }

  .team-grid { grid-template-columns: 1fr; }
  .team-card--featured { grid-template-columns: 1fr; }

  .reservation__inner { grid-template-columns: 1fr; gap: 3rem; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__brand { grid-column: 1 / -1; }

  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .histoire__stats { gap: 1rem; }
  .reservation__form-wrap { padding: 2rem 1.5rem; }
  .footer__inner { grid-template-columns: 1fr; }
}
