:root {
  --burgundy: #57002B;
  --burgundy-rgb: 87, 0, 43;
  --burgundy-dark: #57002B;
  --burgundy-mid: #57002B;
  --page-bg: #57002B;
  --gold: #C8A030;
  --gold-light: #E8CC6A;
  --gold-dark: #8A6010;
  --cream: #FEFCF5;
  --cream-dark: #F2E8CC;
  --header-height: 56px;
  --header-top: 16px;
  --toggle-offset: 15px;
  --toggle-top: calc(var(--header-top) + var(--toggle-offset));
  --header-total: calc(var(--header-top) + var(--header-height));
}

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

html {
  scroll-behavior: smooth;
  background: var(--page-bg);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: "Cormorant Garamond", Georgia, serif;
  background: var(--page-bg);
  color: var(--cream);
  overflow-x: hidden;
}

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 2000;
  padding: 10px 16px;
  background: var(--gold);
  color: var(--burgundy-dark);
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

/* Language toggle */
.lang-toggle {
  display: flex;
  flex-shrink: 0;
  border: 1px solid rgba(200, 160, 48, 0.5);
  background: var(--page-bg);
  backdrop-filter: none;
}

.header-lang {
  position: fixed;
  top: var(--toggle-top);
  right: 38px;
  z-index: 1100;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 2px;
  padding: 7px 13px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.lang-btn.active {
  background: var(--gold);
  color: var(--burgundy-dark);
}

/* Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-top: var(--header-top);
  transition: background 0.4s, border-color 0.4s;
}

.site-header.scrolled {
  background: var(--page-bg);
  backdrop-filter: none;
  border-bottom: 1px solid rgba(200, 160, 48, 0.18);
}

.nav-inner {
  display: grid;
  grid-template-columns: minmax(44px, 1fr) auto minmax(44px, 1fr);
  align-items: center;
  gap: 12px;
  padding: 8px 88px 12px 20px;
  min-height: var(--header-height);
  max-width: 960px;
  margin: 0 auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(200, 160, 48, 0.4);
  color: var(--gold);
  padding: 8px 10px;
  cursor: pointer;
  justify-self: start;
  grid-column: 1;
  width: fit-content;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--gold);
  margin: 4px 0;
  transition: transform 0.3s, opacity 0.3s;
}

.site-header.menu-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.site-header.menu-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 3.5vw, 40px);
  grid-column: 2;
  flex-wrap: wrap;
}

nav a {
  font-family: "Cinzel", serif;
  font-size: clamp(11px, 1.4vw, 13px);
  letter-spacing: 3px;
  color: var(--gold);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

nav a:hover,
nav a:focus-visible {
  opacity: 1;
}

/* Dividers & medallion */
.divider {
  display: flex;
  align-items: center;
  gap: 14px;
}

.divider-line {
  flex: 1;
  height: 0.7px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.divider-line.gold-dark {
  background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
}

.divider-line.subtle {
  background: linear-gradient(to right, transparent, rgba(200, 160, 48, 0.25), transparent);
}

.divider-diamond {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.divider-diamond.subtle {
  background: rgba(200, 160, 48, 0.4);
}

.section-medallion {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: -20px 0;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.medallion {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(200, 160, 48, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--page-bg);
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 18px;
  font-weight: 500;
}

.section-medallion.on-burgundy .medallion {
  background: var(--page-bg);
  color: var(--gold);
  border-color: rgba(200, 160, 48, 0.35);
}

/* Hero */
#hero {
  min-height: 100svh;
  background: var(--page-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  display: none;
}

#hero::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(200, 160, 48, 0.25);
  pointer-events: none;
}

.hero-glow {
  display: none;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeUp 1.4s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo {
  width: clamp(180px, 38vw, 280px);
  margin: 0 auto 28px;
  background-color: var(--page-bg);
}

.hero-tagline {
  font-style: italic;
  font-size: clamp(15px, 2.5vw, 20px);
  color: var(--cream);
  opacity: 0.55;
  letter-spacing: 4px;
  margin-top: 20px;
}

.hero-cta {
  display: inline-block;
  margin-top: 40px;
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(200, 160, 48, 0.45);
  padding: 14px 28px;
  transition: background 0.3s, color 0.3s;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  background: var(--gold);
  color: var(--burgundy-dark);
}

.corner {
  position: absolute;
  width: 44px;
  height: 44px;
  z-index: 1;
}

.corner.tl {
  top: 30px;
  left: 30px;
}

.corner.tr {
  top: 30px;
  right: 30px;
  transform: scaleX(-1);
}

.corner.bl {
  bottom: 30px;
  left: 30px;
  transform: scaleY(-1);
}

.corner.br {
  bottom: 30px;
  right: 30px;
  transform: scale(-1);
}

/* Sections */
section {
  padding: 100px 24px;
  background: var(--page-bg);
}

section[id] {
  scroll-margin-top: calc(var(--header-total) + 20px);
}

.container {
  max-width: 860px;
  margin: 0 auto;
}

.section-label {
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 6px;
  color: var(--gold);
  text-align: center;
  opacity: 0.65;
  margin-bottom: 14px;
}

.section-title {
  font-family: "Cinzel", serif;
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 500;
  text-align: center;
  letter-spacing: 8px;
  margin-bottom: 8px;
}

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

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

/* Histoire */
#histoire {
  background: var(--page-bg);
  text-align: center;
}

.histoire-text {
  font-size: clamp(17px, 2.5vw, 21px);
  line-height: 2;
  color: var(--cream);
  opacity: 0.82;
  max-width: 660px;
  margin: 0 auto;
  font-weight: 300;
}

.histoire-text em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}

.azul-word {
  font-family: "Cinzel", serif;
  font-size: 1.05em;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 5px;
}

/* Menu */
#menu {
  background: var(--page-bg);
  position: relative;
  padding-top: calc(100px + var(--header-total) + 16px);
}

#menu::before {
  display: none;
}

.menu-category {
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.menu-category-title {
  font-family: "Cinzel", serif;
  font-size: clamp(12px, 2vw, 15px);
  letter-spacing: 8px;
  color: var(--gold);
  text-align: center;
  margin-bottom: 6px;
}

.menu-category-sub {
  font-style: italic;
  font-size: 14px;
  color: var(--cream);
  opacity: 0.4;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 28px;
}

.menu-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  align-items: baseline;
  padding: 15px 0;
  border-bottom: 1px solid rgba(200, 160, 48, 0.1);
  gap: 4px 10px;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-name {
  font-family: "Cinzel", serif;
  font-size: clamp(12px, 1.8vw, 15px);
  color: var(--gold-light);
  letter-spacing: 2px;
  grid-column: 1;
  grid-row: 1;
}

.menu-item-dots {
  grid-column: 2;
  grid-row: 1;
  border-bottom: 1px dotted rgba(200, 160, 48, 0.18);
  margin-bottom: 3px;
  min-width: 16px;
  align-self: end;
}

.menu-item-desc {
  font-style: italic;
  font-size: clamp(12px, 1.6vw, 14px);
  color: var(--cream);
  opacity: 0.45;
  grid-column: 1 / 3;
  grid-row: 2;
  text-align: left;
}

.menu-item-price {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
  text-align: right;
}

.menu-item-price.note {
  font-size: 12px;
  opacity: 0.55;
}

.menu-item-combo {
  background: rgba(200, 160, 48, 0.05);
  padding: 15px 18px;
  border: 1px solid rgba(200, 160, 48, 0.14);
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(200, 160, 48, 0.14) !important;
}

.menu-item-combo.featured {
  border-color: rgba(200, 160, 48, 0.32);
}

.menu-item-price--featured {
  color: var(--gold-light);
  font-size: 20px;
}

.combo-badge {
  font-family: "Cinzel", serif;
  font-size: 7px;
  letter-spacing: 2px;
  color: var(--burgundy-dark);
  background: var(--gold);
  padding: 2px 7px;
  margin-left: 8px;
  vertical-align: middle;
}

.menu-note {
  text-align: center;
  font-family: "Cinzel", serif;
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--gold);
  opacity: 0.45;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

/* Univers */
#univers {
  background: var(--page-bg);
  text-align: center;
}

.univers-text {
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 2;
  color: var(--cream);
  opacity: 0.75;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
  font-style: italic;
}

.rumi-quote {
  margin-top: 48px;
  font-style: italic;
  font-size: clamp(18px, 3vw, 26px);
  color: var(--gold-light);
  opacity: 0.75;
}

.rumi-attr {
  margin-top: 8px;
  font-family: "Cinzel", serif;
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--gold);
  opacity: 0.55;
}

/* Find us */
#trouver {
  background: var(--page-bg);
  text-align: center;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 580px;
  margin: 48px auto 0;
}

.info-block-title {
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold);
  opacity: 0.65;
  margin-bottom: 14px;
}

.info-block-content {
  font-size: 17px;
  color: var(--cream);
  opacity: 0.7;
  line-height: 2.1;
}

.info-block-content strong {
  color: var(--gold-light);
  font-weight: 400;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  text-decoration: none;
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 3px;
  border: 1px solid rgba(200, 160, 48, 0.35);
  padding: 12px 24px;
  margin-top: 48px;
  transition: background 0.3s, border-color 0.3s;
}

.social-link:hover,
.social-link:focus-visible {
  background: rgba(200, 160, 48, 0.08);
  border-color: var(--gold);
}

.map-wrap {
  margin-top: 48px;
  border: 1px solid rgba(200, 160, 48, 0.2);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%) contrast(1.05);
}

/* Footer */
footer {
  background: var(--page-bg);
  border-top: 1px solid rgba(200, 160, 48, 0.12);
  padding: 36px 24px 48px;
  text-align: center;
}

.footer-logo {
  width: 56px;
  margin: 0 auto 14px;
  opacity: 0.45;
  background-color: var(--page-bg);
}

.footer-text {
  font-family: "Cinzel", serif;
  font-size: 9px;
  color: var(--gold);
  opacity: 0.35;
  letter-spacing: 5px;
  margin-bottom: 20px;
}

.footer-lang {
  position: static;
  display: inline-flex;
  border: 1px solid rgba(200, 160, 48, 0.35);
  margin: 0 auto 20px;
  background: transparent;
  backdrop-filter: none;
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  text-decoration: none;
  font-family: "Cinzel", serif;
  font-size: 9px;
  letter-spacing: 3px;
  opacity: 0.55;
  transition: opacity 0.3s;
}

.footer-instagram:hover,
.footer-instagram:focus-visible {
  opacity: 1;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

/* Language visibility */
.fr {
  display: block;
}

.en {
  display: none;
}

body.lang-en .fr {
  display: none;
}

body.lang-en .en {
  display: block;
}

span.fr {
  display: inline;
}

span.en {
  display: none;
}

body.lang-en span.fr {
  display: none;
}

body.lang-en span.en {
  display: inline;
}

/* Responsive */
@media (min-width: 901px) {
  .menu-item-desc {
    grid-column: 2;
    grid-row: 1;
    text-align: right;
    align-self: baseline;
  }

  .menu-item {
    grid-template-columns: auto 1fr auto auto;
    grid-template-rows: auto;
  }

  .menu-item-dots {
    grid-column: 2;
    grid-row: 1;
  }

  .menu-item-desc {
    grid-column: 3;
    grid-row: 1;
    max-width: 240px;
  }

  .menu-item-price {
    grid-column: 4;
    grid-row: 1;
  }
}

@media (max-width: 900px) {
  :root {
    --header-top: 18px;
    --toggle-offset: 22px;
    --header-height: 56px;
  }

  .site-header.scrolled {
    border-bottom: none;
  }

  .lang-btn {
    font-size: 11px;
    letter-spacing: 1.5px;
    padding: 6px 10px;
    min-width: unset;
    min-height: unset;
  }

  .header-lang {
    right: 28px;
  }

  .nav-inner {
    position: relative;
    grid-template-columns: 1fr;
    padding: 0 72px 12px 0;
    min-height: var(--header-height);
  }

  .nav-toggle {
    display: block;
    position: absolute;
    top: calc(var(--header-top));
    left: 32px;
    padding: 10px 12px;
    min-width: 44px;
    min-height: 44px;
    grid-column: unset;
    justify-self: unset;
  }

  .nav-toggle-bar {
    width: 20px;
    height: 2px;
    margin: 4px 0;
  }

  .site-header.menu-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.menu-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  nav {
    position: fixed;
    top: var(--header-total);
    left: 0;
    right: 0;
    bottom: 0;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    padding: 32px 24px;
    background: var(--page-bg);
    backdrop-filter: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
    z-index: 105;
  }

  .site-header.menu-open nav {
    opacity: 1;
    visibility: visible;
  }

  nav a {
    font-size: 17px;
    letter-spacing: 3px;
    padding: 8px 16px;
  }

  #hero {
    padding: calc(var(--header-total) + 32px) 20px 64px;
  }

  #hero::after {
    inset: 14px;
  }

  .hero-logo {
    width: min(72vw, 280px);
    margin-bottom: 32px;
  }

  .hero-tagline {
    font-size: 18px;
    letter-spacing: 3px;
    line-height: 1.5;
  }

  .hero-cta {
    font-size: 13px;
    letter-spacing: 3px;
    padding: 16px 32px;
    margin-top: 36px;
  }

  section {
    padding: 72px 20px;
  }

  .section-label {
    font-size: 12px;
    letter-spacing: 5px;
    margin-bottom: 16px;
  }

  .section-title {
    font-size: 32px;
    letter-spacing: 6px;
  }

  .histoire-text {
    font-size: 20px;
    line-height: 1.85;
  }

  #menu {
    padding-top: calc(72px + var(--header-total) + 16px);
  }

  .menu-category {
    margin-bottom: 48px;
  }

  .menu-category-title {
    font-size: 14px;
    letter-spacing: 6px;
    margin-bottom: 10px;
  }

  .menu-category-sub {
    font-size: 17px;
    opacity: 0.55;
    margin-bottom: 24px;
    line-height: 1.5;
  }

  .menu-item {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    padding: 18px 0;
    gap: 8px 16px;
  }

  .menu-item-dots {
    display: none;
  }

  .menu-item-name {
    font-size: 17px;
    letter-spacing: 1px;
    grid-column: 1;
    grid-row: 1;
  }

  .menu-item-desc {
    font-size: 16px;
    opacity: 0.6;
    grid-column: 1 / -1;
    grid-row: 2;
    line-height: 1.45;
  }

  .menu-item-price {
    font-size: 20px;
    grid-column: 2;
    grid-row: 1;
  }

  .menu-item-price--featured {
    font-size: 22px;
  }

  .menu-item-price.note {
    font-size: 15px;
  }

  .menu-item-combo {
    padding: 18px 16px;
  }

  .combo-badge {
    font-size: 9px;
    padding: 3px 8px;
  }

  .menu-note {
    font-size: 11px;
    letter-spacing: 3px;
    margin-top: 40px;
  }

  .univers-text {
    font-size: 19px;
    line-height: 1.85;
  }

  .rumi-quote {
    font-size: 24px;
    line-height: 1.5;
  }

  .rumi-attr {
    font-size: 11px;
  }

  .info-block-title {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .info-block-content {
    font-size: 19px;
    line-height: 1.75;
  }

  .social-link {
    font-size: 13px;
    padding: 14px 28px;
    letter-spacing: 2px;
  }

  .map-wrap {
    margin-top: 40px;
  }

  footer {
    padding: 40px 20px 56px;
  }

  .footer-logo {
    width: 72px;
  }

  .footer-text {
    font-size: 11px;
    letter-spacing: 4px;
  }

  .footer-lang .lang-btn {
    font-size: 13px;
    padding: 10px 18px;
  }

  .footer-instagram {
    font-size: 12px;
    letter-spacing: 2px;
    padding: 8px;
  }

  .medallion {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .corner {
    width: 36px;
    height: 36px;
  }

  .corner.tl,
  .corner.tr {
    top: 18px;
  }

  .corner.tl,
  .corner.bl {
    left: 18px;
  }

  .corner.tr,
  .corner.br {
    right: 18px;
  }

  .corner.bl,
  .corner.br {
    bottom: 18px;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    width: 78vw;
  }

  .hero-tagline {
    font-size: 19px;
  }

  .section-title {
    font-size: 28px;
    letter-spacing: 5px;
  }

  .histoire-text {
    font-size: 21px;
  }

  .menu-item-name {
    font-size: 18px;
  }

  .menu-item-desc {
    font-size: 17px;
  }

  .menu-item-price {
    font-size: 21px;
  }

  .menu-item-price--featured {
    font-size: 22px;
  }

  nav a {
    font-size: 18px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
