/* ========================================
   JINCHAN MAQUETTE - CSS VANILLA
   Conversion depuis Tailwind
   ======================================== */

/* === Variables de thème === */
:root {
  --bg: #F7F0E8;
  --surface: #FFFFFF;
  --surface-soft: rgba(255, 255, 255, 0.88);
  --text: #1C120A;
  --accent: #E45A1A;
  --accent-soft: #FFD5BC;
  --accent-dark: #B84514;
  --line: #E2D2C3;
  --muted: #F1E4D7;
  --navbar-safe-offset: 88px;
}



/* === Reset et base === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

/* === Container === */
.container {
  margin: 0 auto;
  width: 100%;
  max-width: 80rem; /* 1280px */
  padding-left: 1rem;
  padding-right: 1rem;
}



/* === Navbar === */
.navbar {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  column-gap: 1.5rem;
  min-height: 88px;
}

.navbar-logo {
  text-align: center;
}

.navbar-logo-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--text);
}

.navbar-logo-text img {
  display: block;
  height: 70px;
  width: auto;
  max-height: 70px;
  object-fit: contain;
}

.navbar-links {
  display: none;
  gap: 1.75rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  align-items: center;
}

.navbar-links a {
  color: var(--text);
  transition: opacity 0.2s;
  padding: 0.35rem 0.25rem;
  line-height: 1.4;
}

.navbar-links a:hover {
  opacity: 0.8;
}


.navbar-burger {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
}


.navbar-mobile {
  padding: 1rem 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbf4eb 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.navbar-mobile a {
  display: block;
  padding: 0.85rem 0.35rem;
  color: var(--text);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.navbar-mobile a:last-child {
  border-bottom: none;
}

.navbar-mobile a:hover {
  background: rgba(228, 90, 26, 0.06);
  color: var(--accent-dark);
}

/* === Nav dropdown (Restaurants) === */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 800;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  padding: 0.35rem 0.15rem;
  line-height: 1.4;
}

.nav-dropdown-toggle .icon-chevron-down {
  transition: transform 0.18s ease;
}

.nav-dropdown-toggle[aria-expanded="true"] .icon-chevron-down {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 14rem;
  background: var(--surface);
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(16,24,40,0.08);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 60;
}

.nav-dropdown-menu a {
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  color: var(--text);
  font-weight: 600;
}

.nav-dropdown-menu a:hover {
  background: var(--muted);
}


/* === Hero === */
.hero {
  position: relative;
  min-height: 88vh;
  width: 100%;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.6) 60%);
}

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

.hero-overlay-1 {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(228,90,26,0.35) 0%, transparent 55%);
}

.hero-overlay-2 {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(28,18,10,0.35) 0%, transparent 45%);
}

.hero-content {
  padding-bottom: 3rem;
  max-width: 48rem;
  

  padding-top: 2rem;
  
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
}

.hero-badge-separator {
  color: var(--accent-soft);
}

.hero-title {
  margin-top: 1.5rem;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: #FFFFFF;
}


.hero-title-accent {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.15);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-size: 1.875rem;
  vertical-align: middle;
  margin-left: 0.5rem;
  color: var(--accent-soft);
}

.hero-subtitle {
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  opacity: 0.9;
  color: #FFFFFF;
}


.hero-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-highlights {
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
}


.hero-highlight-item {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  backdrop-filter: blur(10px);
}

.hero-highlight-label {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent-soft);
}

.hero-highlight-detail {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-scroll {
  margin-top: 2rem;
  font-size: 0.75rem;
  line-height: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: var(--accent-soft);
}

/* === Button === */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: #FFFFFF;
  border-color: var(--accent);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-surface {
  background: var(--surface-soft);
  color: var(--accent-dark);
  border-color: var(--surface-soft);
}

.btn-surface:hover {
  background: var(--surface);
}

.btn-sm {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  border-radius: 9999px;
}

.menu-card .btn-outline {
  color: var(--accent-dark);
  border-color: var(--accent-soft);
}

.menu-card .btn-outline:hover {
  background: var(--accent-soft);
}

/* === Section === */
.section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}


.section-bg-base {
  background: var(--bg);
}


.section-bg-muted {
  background: linear-gradient(180deg, var(--bg) 0%, var(--muted) 100%);
}

.section-bg-flat {
  background: var(--muted);
}

.section-border-top {
  border-top: 1px solid var(--line);
}

/* === Section Header === */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}


.section-title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 900;
  color: var(--text);
}


.section-subtitle {
  margin-top: 0.5rem;
  max-width: 36rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgba(0, 0, 0, 0.6);
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  color: var(--accent);
}

.section-link:hover {
  opacity: 0.8;
}

/* === Badge === */
.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.05);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--accent-dark);
}

/* === Restaurant Grid === */
.restaurants-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
}


.restaurant-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.1);
}

.restaurant-card-image {
  height: 18rem;
  width: 100%;
  object-fit: cover;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.5s;
}


.restaurant-card:hover .restaurant-card-image {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: scale(1.05);
}

.restaurant-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15), transparent);
}

.restaurant-card-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.8);
}

.restaurant-card-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1.5rem;
}

.restaurant-card-district {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--accent-soft);
}

.restaurant-card-title {
  margin-top: 0.75rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 900;
  color: white;
}


.restaurant-card-address {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
}

.restaurant-card-link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  color: white;
}

/* === Grid layouts === */
.grid-2 {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  display: grid;
  gap: 2rem;
}


.grid-md-3-1 {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}


.grid-4 {
  grid-template-columns: repeat(2, 1fr);
}


/* === Card === */
.card {
  border-radius: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  padding: 1.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.card-image {
  overflow: hidden;
  border-radius: 1rem;
}

.card-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.5s;
}

.card-image img:hover {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: scale(1.05);
}

/* === Photo Grid === */
.photo-grid-item {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.photo-grid-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.5s;
}

.photo-grid-item:hover img {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: scale(1.05);
}

/* === Trio Cards === */
.trio-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  border-radius: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  padding: 1rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.trio-card-image {
  overflow: hidden;
  border-radius: 1rem;
}

.trio-card-image img {
  height: 18rem;
  width: 100%;
  object-fit: cover;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.5s;
}

.trio-card:hover .trio-card-image img {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: scale(1.05);
}

.trio-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
}

.trio-card-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text);
}

/* === Team Photo === */
.team-section-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}


.team-section-description {
  font-size: 0.875rem;
  color: var(--text);
  opacity: 0.9;
  max-width: 28rem;
}

.team-photo-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  border: 1px solid var(--line);
}

.team-photo-image {
  height: 460px;
  width: 100%;
  object-fit: cover;
}

.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.25), transparent);
}

.team-photo-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1.5rem;
}


.team-photo-quote {
  max-width: 42rem;
  padding-left: 1rem;
  border-left: 4px solid var(--accent);
}

.team-photo-quote-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}


.team-photo-quote-author {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-style: normal;
  color: rgba(255, 255, 255, 0.6);
}

/* === Footer === */
.footer {
  background: linear-gradient(180deg, var(--accent-dark) 0%, var(--accent) 80%);
  border-top: 1px solid var(--accent-dark);
  color: white;
}

.footer-content {
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: grid;
  gap: 2.5rem;
}


.footer-brand {
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.7);
}

.footer-title {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 900;
}

.footer-text {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-cta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-socials a {
  transition: color 0.2s;
}

.footer-socials a:hover {
  color: white;
}

.footer-social-wrapper {
  position: relative;
  display: inline-flex;
}

.footer-social-dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  padding: 0.4rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 14rem;
  z-index: 10;
}

.footer-social-item {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.6rem;
  border-radius: 0.5rem;
  color: var(--text);
  font-weight: 600;
  transition: background 0.2s ease;
}

.footer-social-item:hover {
  background: var(--muted);
}

.footer-section-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.75rem;
}

.footer-links {
  font-size: 0.875rem;
}

.footer-links p {
  margin-bottom: 0.75rem;
}

.footer-links a {
  display: block;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-copyright {
  padding-top: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

/* === Restaurant Detail Header === */
.restaurant-header {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  min-height: calc(60vh + var(--navbar-safe-offset));
  padding-top: var(--navbar-safe-offset);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  box-sizing: border-box;
  scroll-margin-top: var(--navbar-safe-offset);
}

@media (min-width: 1024px) {
  .restaurant-header {
    aspect-ratio: auto;
    height: calc(100vh - var(--navbar-safe-offset));
    min-height: 0;
  }
}

.restaurant-header-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.restaurant-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.2), transparent);
}

.restaurant-header-content {
  position: relative;
  padding: 1.5rem;
}


/* Tags under main description */
.restaurant-header-tags {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.restaurant-header-tags .tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  border: 1px solid rgba(255,255,255,0.08);
}

.restaurant-header-district {
  font-size: 0.875rem;
  opacity: 0.9;
  color: #FFFFFF;
}

.restaurant-header-title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 900;
  color: #FFFFFF;
}


.restaurant-header-desc {
  margin-top: 0.5rem;
  max-width: 42rem;
  opacity: 0.9;
  color: #FFFFFF;
}

.restaurant-header-cta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}


.restaurant-header-cta .btn {
  padding: 0.625rem 1.75rem;
  font-size: 0.875rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}


/* === Restaurant Body === */
.restaurant-intro {
  display: grid;
  gap: 2rem;
  align-items: start;
}


.restaurant-info {
  font-size: 0.875rem;
  color: var(--text);
}

.restaurant-info h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.restaurant-info p {
  opacity: 0.9;
  margin-bottom: 1rem;
}

.restaurant-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.restaurant-info-item svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.restaurant-signatures {
  position: relative;
}

/* === Plats signatures – layout & fond clair (compact) === */

.signature-panel {
  border-radius: 0;
  border: none;
  background: transparent;
  padding: 0;
  display: grid;
  gap: 2rem;
  align-items: start;
}


/* Titre / description à droite */
.signature-panel-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.signature-panel-chip {
  align-self: flex-start;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.signature-panel-title {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.signature-panel-description {
  font-size: 0. ninerem;
  line-height: 1.6;
  opacity: 0.95;
  color: var(--text);
}

/* Petits blocs stats plus clairs */
.signature-highlight-grid {
  display: grid;
  gap: 0.75rem;
}


.signature-highlight {
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.signature-highlight-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: 0.05em;
}

.signature-highlight-label {
  font-size: 0.7rem;
  opacity: 0.75;
  color: var(--text);
}

/* === Cartes signature – mise en liste compacte === */

.signature-cards {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr; /* mobile: 1 colonne */
}



/* Conteneur contrasté, mais plus compact */
.signature-cards-contrast {
  background: radial-gradient(circle at top left, #ffe1c5, #fff9f3);
  border-radius: 0.9rem;
  padding: 0.75rem;
  border: none; /* retirer la bordure pour éviter cadre imbriqué */
  box-shadow: none; /* design plus plat et harmonisé */
}

/* Carte individuelle (plein visuel avec overlay) */
.signature-card {
  position: relative;
  border-radius: 1.1rem;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at 20% 20%, rgba(228, 90, 26, 0.08), rgba(0, 0, 0, 0.45));
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.signature-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

.signature-card-media {
  position: relative;
  overflow: hidden;
  min-height: 15rem;
}

.signature-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.signature-card:hover .signature-card-media img {
  transform: scale(1.05);
}

.signature-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.25rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.45) 40%, rgba(0, 0, 0, 0.65) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(45%);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), background 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.signature-card:hover .signature-card-body,
.signature-card:focus-within .signature-card-body {
  transform: translateY(0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.5) 45%, rgba(0, 0, 0, 0.75) 100%);
}

.signature-card-tag {
  align-self: flex-start;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-soft);
  padding: 0.18rem 0.45rem;
  border-radius: 9999px;
}

.signature-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.signature-card-desc {
  font-size: 0.9rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  max-height: 3.2em;
  transition: max-height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), color 0.3s ease;
}

.signature-card:hover .signature-card-desc,
.signature-card:focus-within .signature-card-desc {
  max-height: 16em;
}

.signature-empty {
  font-size: 0.8rem;
  opacity: 0.75;
  margin: 0;
  color: var(--text);
}

.signature-card--empty {
  border-style: dashed;
  justify-content: center;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: none;
}

.signature-card--empty .signature-card-body {
  position: static;
  background: transparent;
  color: var(--text);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}


.restaurant-info-meta {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}


.restaurant-service-hours {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.restaurant-showcase {
  width: 100%;
}

.restaurant-showcase-figure {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--line);
  margin: 0;
  background: rgba(0, 0, 0, 0.05);
  aspect-ratio: 4 / 3;
}

.restaurant-showcase-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.restaurant-showcase-figure:hover img {
  transform: scale(1.03);
}

.restaurant-showcase-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  background: linear-gradient(180deg, rgba(5, 5, 6, 0) 0%, rgba(5, 5, 6, 0.75) 100%);
  color: #ffffff;
}

.restaurant-showcase-district {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.85;
}

.restaurant-showcase-name {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 900;
}


/* === Gallery carousel === */
.media-carousel-wrapper {
  position: relative;
  margin-top: 1.5rem;
  overflow: hidden;
}

.media-carousel-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6rem;
  pointer-events: none;
  z-index: 5;
  display: none;
}


.media-carousel-fade-left {
  left: 0;
  background: linear-gradient(90deg, var(--bg, #f7f0e8) 0%, rgba(247, 240, 232, 0) 100%);
}

.media-carousel-fade-right {
  right: 0;
  background: linear-gradient(270deg, var(--bg, #f7f0e8) 0%, rgba(247, 240, 232, 0) 100%);
}

.media-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  touch-action: pan-y;
}

.media-carousel::-webkit-scrollbar {
  display: none;
}

.media-carousel-item {
  width: 260px;
  flex-shrink: 0;
  scroll-snap-align: center;
}



.media-carousel-item-inner {
  position: relative;
  height: 14rem;
  overflow: hidden;
  border-radius: 1.5rem;
  background: rgba(0, 0, 0, 0.05);
}


.media-carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.5s;
}

.media-carousel-item:hover img {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: scale(1.05);
}

.media-carousel.is-dragging {
  cursor: grabbing;
}

.media-carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.2), transparent);
  padding: 1rem;
}

.media-carousel-caption-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  color: #FFFFFF;
}

.media-carousel-controls {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  justify-content: center;
}

.media-carousel-controls-desktop {
  display: none;
}


.carousel-btn {
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid var(--line);
  padding: 0.5rem;
  cursor: pointer;
  color: var(--text);
}

.carousel-btn:hover {
  background: white;
}

/* === Menu Cards === */
.menu-cards {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}



.menu-card {
  height: 100%;
  border: 1.5px solid var(--accent-soft);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1.5rem;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.2s;
}

.menu-card:hover {
  --tw-translate-y: -0.25rem;
  transform: translateY(-0.25rem);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.menu-card-header {
  display: flex;
  gap: 1rem;
  align-items: start;
}

.menu-card-icon {
  display: flex;
  height: 3.5rem;
  width: 3.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--accent-soft);
}

.menu-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  color: var(--accent-dark);
}

.menu-card-chip {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-dark);
  margin-bottom: 0.25rem;
  opacity: 0.8;
}

.menu-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
}

.menu-card-desc {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.6;
  opacity: 0.8;
  color: var(--text);
}

.menu-card-footer {
  margin-top: 1.25rem;
}

/* === Utility Bar === */
.utility-bar {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
}

.utility-bar-inner {
  display: flex;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid var(--accent-soft);
  background: var(--surface-soft);
  padding: 0.5rem 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* === Utilities === */
.text-center {
  text-align: center;
}

.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }

.pt-12 { padding-top: 3rem; }

.hidden {
  display: none;
}


/* === List bullets === */
.feature-list {
  margin-top: 1.5rem;
  font-size: 0.875rem;
}

.feature-list-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.feature-bullet {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 9999px;
  flex-shrink: 0;
}

.feature-bullet-accent {
  background: var(--accent);
}

.feature-bullet-text {
  background: var(--text);
}

.feature-bullet-soft {
  background: var(--accent-soft);
}

/* === Mission Split === */
.mission-card {
  order: 2;
  border-radius: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  padding: 1.5rem;
  height: 100%;
}


.mission-features {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
  font-size: 0.875rem;
}


.mission-feature-item {
  border-radius: 1rem;
  border: 1px solid rgba(228, 90, 26, 0.12);
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, rgba(255, 213, 188, 0.45), rgba(255, 255, 255, 0.9));
  box-shadow: 0 6px 14px rgba(228, 90, 26, 0.08);
}

.mission-image-wrapper {
  order: 1;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid var(--line);
  height: 100%;
}


.mission-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-grid {
  display: grid;
  gap: 2.5rem;
  align-items: stretch;
}


/* -------------------------------------------------------------- */
/* Floating language selector                                     */
/* -------------------------------------------------------------- */

.floating-lang-bar {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  padding: 8px;
  background: #ffffff;
  border-radius: 14px;
  border: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: padding 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
  scrollbar-width: none;
}

.floating-lang-bar::-webkit-scrollbar {
  display: none;
}

.floating-lang-bar:hover {
  max-width: 80vw;
  padding: 10px 12px;
  overflow-x: auto;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  flex: 0 0 42px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, flex-basis 0.25s ease, margin 0.25s ease;
}

.lang-btn img,
.lang-btn span {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text, #111827);
}

.lang-btn:hover {
  transform: scale(1.05);
  border-color: #c9181d;
  box-shadow: 0 6px 18px rgba(201, 24, 29, 0.18);
}

.lang-btn.active {
  border-color: #c9181d;
  box-shadow: 0 6px 18px rgba(201, 24, 29, 0.25);
  transform: scale(1.04);
}

.floating-lang-bar .lang-btn:not(:first-child) {
  flex-basis: 0;
  margin-left: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8) translateX(-6px);
}

.floating-lang-bar:hover {
  padding: 10px 12px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
}

.floating-lang-bar:hover .lang-btn:not(:first-child) {
  flex-basis: 42px;
  margin-left: 10px;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

/* -------------------------------------------------------------- */
/* Restaurant Gallery (4 photos grid)                             */
/* -------------------------------------------------------------- */

.restaurant-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}


.restaurant-gallery-item {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.restaurant-gallery-item img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.restaurant-gallery-item:hover img {
  transform: scale(1.05);
}

/* -------------------------------------------------------------- */
/* Restaurant Info (text section)                                 */
/* -------------------------------------------------------------- */

.restaurant-info-title {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--text);
}


.restaurant-info-text {
  opacity: 0.9;
  color: var(--text);
  margin-bottom: 1rem;
}

/* -------------------------------------------------------------- */
/* Signature Dishes (text + 2 photos horizontal)                  */
/* -------------------------------------------------------------- */

.signature-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.signature-info-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
}


.signature-info-text {
  font-size: 0.875rem;
  line-height: 1.6;
  opacity: 0.9;
  color: var(--text);
}

.signature-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}


.signature-gallery .dish-card {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.signature-gallery .dish-card img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.signature-gallery .dish-card:hover img {
  transform: scale(1.05);
}

/* -------------------------------------------------------------- */
/* Meta Updated (date stamp)                                      */
/* -------------------------------------------------------------- */

.meta-updated {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
  color: var(--text);
}
