/* ==============================================
   Restaurant Charolais — Global Styles
   (c) 2026 Gradly Concept — Site de demonstration
   ============================================== */

/* ============================================
   GLOBAL RESET
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #4A4038;
  line-height: 1.7;
  background: #FAF8F5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

/* ============================================
   BANDEAU DEMONSTRATION
   ============================================ */
.resto-demo-banner {
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
  color: #FFF;
  padding: 12px 20px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  border-bottom: 2px solid #D2691E;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.resto-demo-banner strong {
  font-weight: 700;
  color: #FFE4B5;
}

.resto-demo-short {
  display: none;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.resto-header {
  position: fixed;
  top: 44px;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(44, 24, 16, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 228, 181, 0.15);
  transition: all 0.3s ease;
}

.resto-header.scrolled {
  background: rgba(44, 24, 16, 0.96);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.resto-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.resto-logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.resto-logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFE4B5;
  letter-spacing: 0.02em;
}

.resto-logo-sub {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #D2B48C;
  text-transform: uppercase;
}

.resto-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.resto-nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #E8D7C3;
  transition: color 0.2s ease;
  position: relative;
  padding: 8px 0;
}

.resto-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #D2691E;
  transition: width 0.3s ease;
}

.resto-nav-link:hover {
  color: #FFE4B5;
}

.resto-nav-link:hover::after {
  width: 100%;
}

.resto-nav-link.active {
  color: #FFE4B5;
  font-weight: 600;
}

.resto-nav-cta {
  padding: 10px 24px;
  background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
  color: #FFF;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(210, 105, 30, 0.3);
}

.resto-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(210, 105, 30, 0.4);
}

/* --- Mobile toggle --- */
.resto-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 910;
}

.resto-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFE4B5;
  margin: 5px 0;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger -> X animation */
.resto-mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.resto-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.resto-mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile overlay --- */
.resto-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 899;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.resto-nav-overlay.active {
  display: block;
  opacity: 1;
}

/* --- Mobile tel in header --- */
.resto-header-tel {
  display: none;
}

/* ============================================
   HERO SECTION
   ============================================ */
.resto-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 124px;
}

.resto-hero--small {
  height: 60vh;
  min-height: 400px;
}

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

.resto-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(44, 24, 16, 0.5) 0%, rgba(44, 24, 16, 0.7) 100%);
  z-index: 2;
}

.resto-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #FFF;
  max-width: 900px;
  padding: 0 24px;
}

.resto-hero-subtitle {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FFE4B5;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.resto-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.resto-hero-title--sub {
  font-size: 3.5rem;
}

.resto-hero-desc {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #E8D7C3;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.resto-hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

/* ============================================
   BUTTONS
   ============================================ */
.resto-btn-primary {
  padding: 16px 40px;
  background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
  color: #FFF;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.0625rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(210, 105, 30, 0.4);
  display: inline-block;
  text-align: center;
}

.resto-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(210, 105, 30, 0.5);
}

.resto-btn-primary--lg {
  font-size: 1.125rem;
  padding: 18px 50px;
}

.resto-btn-secondary {
  padding: 16px 40px;
  background: rgba(255, 255, 255, 0.15);
  color: #FFF;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.0625rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
}

.resto-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

/* Variante pour fonds clairs */
.resto-btn-outline {
  padding: 16px 40px;
  background: transparent;
  color: #2C1810;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.0625rem;
  transition: all 0.3s ease;
  border: 2px solid #D2691E;
  display: inline-block;
  text-align: center;
}

.resto-btn-outline:hover {
  background: #D2691E;
  color: #FFF;
  transform: translateY(-3px);
}

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

/* ============================================
   SECTION / CONTAINER
   ============================================ */
.resto-section {
  padding: 100px 24px;
  position: relative;
}

.resto-section-alt {
  background: #FFF;
}

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

.resto-container--narrow {
  max-width: 900px;
  margin: 0 auto;
}

.resto-container--xs {
  max-width: 800px;
  margin: 0 auto;
}

.resto-container--md {
  max-width: 1000px;
  margin: 0 auto;
}

.resto-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.resto-section-subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D2691E;
  margin-bottom: 12px;
}

.resto-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: #2C1810;
  line-height: 1.2;
  margin-bottom: 20px;
}

.resto-section-desc {
  font-size: 1.125rem;
  color: #6B5D52;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   GRID SYSTEM (responsive)
   ============================================ */
.resto-grid {
  display: grid;
  gap: 40px;
}

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

.resto-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.resto-grid--gap-sm {
  gap: 20px;
}

.resto-grid--gap-md {
  gap: 30px;
}

.resto-grid--gap-lg {
  gap: 60px;
}

.resto-grid--align-center {
  align-items: center;
}

.resto-grid--align-start {
  align-items: start;
}

/* Auto-fit grids */
.resto-grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.resto-grid-auto--cards {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* ============================================
   TYPOGRAPHY HELPERS
   ============================================ */
.resto-heading-2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2C1810;
  line-height: 1.2;
  margin-bottom: 24px;
}

.resto-heading-3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #2C1810;
  margin-bottom: 16px;
}

.resto-heading-3--sm {
  font-size: 1.375rem;
}

.resto-heading-3--xs {
  font-size: 1.25rem;
}

.resto-heading-4 {
  color: #2C1810;
  font-weight: 700;
  margin-bottom: 8px;
}

.resto-text {
  color: #6B5D52;
  line-height: 1.8;
}

.resto-text--sm {
  font-size: 0.9375rem;
}

.resto-text--muted {
  color: #9B8876;
  font-size: 0.875rem;
}

.resto-text--accent {
  color: #D2691E;
  font-weight: 600;
}

.resto-price {
  color: #D2691E;
  font-weight: 800;
  font-size: 1.25rem;
}

.resto-price--lg {
  font-size: 1.5rem;
}

.resto-price--xl {
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
}

.resto-role {
  color: #D2691E;
  font-weight: 600;
  margin-bottom: 12px;
}

/* ============================================
   CARDS
   ============================================ */
.resto-card {
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.resto-card:hover {
  transform: translateY(-4px);
}

.resto-card__body {
  padding: 30px;
}

.resto-card__body--lg {
  padding: 40px;
}

.resto-card--elevated {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.resto-card--center {
  text-align: center;
}

.resto-card__img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.resto-card__img--sm {
  height: 200px;
}

.resto-card__img--lg {
  height: 400px;
}

/* Icon cards (with emoji) */
.resto-icon-card {
  text-align: center;
  padding: 30px;
}

.resto-icon-card--lg {
  padding: 40px;
}

.resto-icon-card__icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.resto-icon-card__icon--sm {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

/* ============================================
   GALLERY
   ============================================ */
.resto-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.resto-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.resto-gallery-item:hover {
  transform: translateY(-4px);
}

.resto-gallery-item:hover .resto-gallery-item__img {
  transform: scale(1.05);
}

.resto-gallery-item__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.resto-gallery-item__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(44, 24, 16, 0.95) 0%, rgba(44, 24, 16, 0) 100%);
  padding: 30px 24px;
}

.resto-gallery-item__title {
  color: #FFE4B5;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.resto-gallery-item__desc {
  color: #E8D7C3;
  font-size: 0.9375rem;
}

/* Ambiance grid */
.resto-ambiance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.resto-ambiance-grid__full {
  grid-column: span 2;
}

.resto-ambiance-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.resto-ambiance-img--tall {
  height: 500px;
}

.resto-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.resto-detail-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* ============================================
   MENU PAGE
   ============================================ */
.resto-menu-box {
  background: #FFF;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.resto-menu-price-header {
  text-align: center;
  margin-bottom: 40px;
}

.resto-menu-category {
  margin-bottom: 35px;
}

.resto-menu-category__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #D2691E;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #FAF8F5;
}

.resto-menu-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.resto-menu-list li {
  color: #4A4038;
  line-height: 1.7;
}

.resto-menu-item {
  margin-bottom: 20px;
}

.resto-menu-note {
  text-align: center;
  color: #9B8876;
  font-size: 0.875rem;
  margin-top: 30px;
  font-style: italic;
}

.resto-menu-or {
  color: #9B8876;
  font-size: 0.875rem;
  font-style: italic;
  margin: 12px 0;
}

.resto-meat-info {
  margin-top: 40px;
  padding: 30px;
  background: linear-gradient(135deg, #FAF8F5 0%, #F5EFE7 100%);
  border-radius: 12px;
  border-left: 4px solid #D2691E;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.resto-team-member {
  text-align: center;
}

.resto-team-avatar {
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #FFF;
}

/* ============================================
   ENGAGEMENT SECTION
   ============================================ */
.resto-engagement-list {
  display: grid;
  gap: 30px;
}

.resto-engagement-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 30px;
  background: #FFF;
  border-radius: 12px;
}

.resto-engagement-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

/* ============================================
   FORMS
   ============================================ */
.resto-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.resto-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.resto-form-row--3 {
  grid-template-columns: repeat(3, 1fr);
}

.resto-form-label {
  display: block;
  color: #2C1810;
  font-weight: 600;
  margin-bottom: 8px;
}

.resto-form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E8D7C3;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #FFF;
}

.resto-form-input:focus {
  outline: none;
  border-color: #D2691E;
  box-shadow: 0 0 0 3px rgba(210, 105, 30, 0.1);
}

.resto-form-input--error {
  border-color: #DC2626;
}

.resto-form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E8D7C3;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.resto-form-textarea:focus {
  outline: none;
  border-color: #D2691E;
  box-shadow: 0 0 0 3px rgba(210, 105, 30, 0.1);
}

.resto-form-submit {
  padding: 16px 40px;
  background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
  color: #FFF;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.0625rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(210, 105, 30, 0.4);
  font-family: inherit;
}

.resto-form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(210, 105, 30, 0.5);
}

.resto-form-note {
  color: #9B8876;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Form validation inline messages */
.resto-form-message {
  display: none;
  padding: 16px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.resto-form-message--success {
  display: block;
  background: #F0FDF4;
  color: #166534;
  border: 1px solid #BBF7D0;
}

.resto-form-message--error {
  display: block;
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

/* ============================================
   INFO BOXES
   ============================================ */
.resto-info-box {
  background: #FFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.resto-info-row {
  display: flex;
  gap: 16px;
}

.resto-info-row + .resto-info-row {
  margin-top: 24px;
}

.resto-info-icon {
  font-size: 1.75rem;
  color: #D2691E;
  flex-shrink: 0;
}

.resto-info-label {
  font-weight: 700;
  color: #2C1810;
  margin-bottom: 4px;
}

.resto-bon-a-savoir {
  background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
  padding: 40px;
  border-radius: 12px;
  color: #FFF;
  box-shadow: 0 8px 30px rgba(210, 105, 30, 0.3);
}

.resto-bon-a-savoir__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.resto-bon-a-savoir__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ============================================
   TRANSPORT / ACCESS
   ============================================ */
.resto-transport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.resto-transport-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.resto-access-item {
  background: #FFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.resto-access-icon {
  font-size: 2.5rem;
  color: #D2691E;
  flex-shrink: 0;
}

.resto-access-body {
  flex: 1;
}

.resto-access-highlight {
  margin-top: 16px;
  color: #D2691E;
  font-weight: 600;
}

.resto-access-list {
  color: #6B5D52;
  line-height: 2;
  font-size: 0.9375rem;
}

/* ============================================
   MAP PLACEHOLDER
   ============================================ */
.resto-map-placeholder {
  background: #FAF8F5;
  height: 400px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.resto-map-placeholder__content {
  text-align: center;
  color: #9B8876;
}

.resto-map-placeholder__icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

/* ============================================
   CTA SECTIONS
   ============================================ */
.resto-cta {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.resto-cta__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.resto-footer {
  background: #2C1810;
  color: #D2B48C;
  padding: 60px 24px 30px;
}

.resto-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.resto-footer-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFE4B5;
  margin-bottom: 20px;
}

.resto-footer-col p,
.resto-footer-col a {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #D2B48C;
  transition: color 0.2s ease;
}

.resto-footer-col a:hover {
  color: #FFE4B5;
}

.resto-footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.resto-footer-bottom {
  border-top: 1px solid rgba(255, 228, 181, 0.15);
  padding-top: 30px;
  text-align: center;
  font-size: 0.875rem;
  color: #9B8876;
}

.resto-footer-bottom a {
  color: #D2691E;
  font-weight: 600;
  transition: color 0.2s ease;
}

.resto-footer-bottom a:hover {
  color: #CD853F;
}

/* ============================================
   UTILITIES
   ============================================ */
.resto-text-center { text-align: center; }
.resto-mt-sm { margin-top: 20px; }
.resto-mt-md { margin-top: 40px; }
.resto-mt-lg { margin-top: 60px; }
.resto-mb-sm { margin-bottom: 20px; }
.resto-mb-md { margin-bottom: 40px; }
.resto-mb-lg { margin-bottom: 60px; }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.resto-animate-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.resto-animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .resto-animate-ready {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .resto-nav {
    gap: 20px;
  }

  .resto-grid--gap-lg {
    gap: 40px;
  }

  .resto-section {
    padding: 80px 24px;
  }

  .resto-section-title {
    font-size: 2.25rem;
  }

  .resto-heading-2 {
    font-size: 2rem;
  }

  .resto-hero-title {
    font-size: 3.25rem;
  }

  .resto-hero-title--sub {
    font-size: 2.75rem;
  }

  .resto-gallery-item__img {
    height: 320px;
  }

  .resto-ambiance-img--tall {
    height: 400px;
  }

  .resto-menu-box {
    padding: 40px 30px;
  }
}

/* ============================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  /* Demo banner — short version on mobile */
  .resto-demo-banner {
    padding: 8px 16px;
    font-size: 0.8125rem;
  }

  .resto-demo-full {
    display: none;
  }

  .resto-demo-short {
    display: inline;
  }

  /* Header — compact on mobile */
  /* Banner ~36px + header 56px = 92px total */
  .resto-header {
    top: 36px;
  }

  .resto-header-inner {
    height: 56px;
  }

  .resto-logo-main {
    font-size: 1.125rem;
  }

  .resto-logo-sub {
    display: none;
  }

  .resto-mobile-toggle {
    display: block;
  }

  .resto-header-tel {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #FFE4B5;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-right: 8px;
  }

  /* Nav panel — slides from right, below banner+header */
  .resto-nav {
    position: fixed;
    top: 92px;
    right: -100%;
    width: 260px;
    height: calc(100vh - 92px);
    background: rgba(44, 24, 16, 0.98);
    flex-direction: column;
    padding: 24px 20px;
    gap: 0;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(255, 228, 181, 0.15);
    overflow-y: auto;
  }

  .resto-nav.active {
    right: 0;
  }

  .resto-nav-link {
    width: 100%;
    padding: 14px 0;
    font-size: 0.9375rem;
    border-bottom: 1px solid rgba(255, 228, 181, 0.1);
  }

  .resto-nav-cta {
    margin-top: 16px;
    text-align: center;
  }

  /* Hero — clear banner+header */
  .resto-hero {
    height: 80vh;
    min-height: 500px;
    margin-top: 92px;
  }

  .resto-hero--small {
    height: 50vh;
    min-height: 350px;
  }

  .resto-hero-title {
    font-size: 2.5rem;
  }

  .resto-hero-title--sub {
    font-size: 2.25rem;
  }

  .resto-hero-desc {
    font-size: 1.0625rem;
  }

  .resto-hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .resto-btn-primary,
  .resto-btn-secondary,
  .resto-btn-outline {
    width: 100%;
    max-width: 320px;
  }

  .resto-btn-primary--lg {
    padding: 16px 40px;
    font-size: 1.0625rem;
  }

  /* Sections */
  .resto-section {
    padding: 60px 20px;
  }

  .resto-section-header {
    margin-bottom: 40px;
  }

  .resto-section-title {
    font-size: 2rem;
  }

  .resto-heading-2 {
    font-size: 1.75rem;
  }

  /* Grids -> 1 column on mobile */
  .resto-grid--2,
  .resto-grid--3 {
    grid-template-columns: 1fr;
  }

  .resto-grid--gap-lg {
    gap: 30px;
  }

  .resto-grid-auto,
  .resto-grid-auto--cards {
    grid-template-columns: 1fr;
  }

  /* Gallery */
  .resto-gallery-grid {
    grid-template-columns: 1fr;
  }

  .resto-gallery-item__img {
    height: 280px;
  }

  .resto-ambiance-grid {
    grid-template-columns: 1fr;
  }

  .resto-ambiance-grid__full {
    grid-column: span 1;
  }

  .resto-ambiance-img {
    height: 250px;
  }

  .resto-ambiance-img--tall {
    height: 300px;
  }

  .resto-detail-grid {
    grid-template-columns: 1fr;
  }

  .resto-detail-img {
    height: 250px;
  }

  /* Menu */
  .resto-menu-box {
    padding: 30px 20px;
  }

  /* Team */
  .resto-team-avatar {
    width: 140px;
    height: 140px;
    font-size: 3rem;
  }

  /* Forms */
  .resto-form-row,
  .resto-form-row--3 {
    grid-template-columns: 1fr;
  }

  /* Transport */
  .resto-transport-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Access items */
  .resto-access-item {
    flex-direction: column;
    padding: 30px;
  }

  /* Info box */
  .resto-info-box {
    padding: 30px;
  }

  .resto-bon-a-savoir {
    padding: 30px;
  }

  /* CTA */
  .resto-cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Footer */
  .resto-footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Card images */
  .resto-card__img {
    height: 200px;
  }

  .resto-card__img--lg {
    height: 280px;
  }

  .resto-card__img--sm {
    height: 180px;
  }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (max-width: 400px)
   ============================================ */
@media (max-width: 400px) {
  .resto-hero-title {
    font-size: 2rem;
  }

  .resto-hero-title--sub {
    font-size: 1.75rem;
  }

  .resto-section-title {
    font-size: 1.75rem;
  }

  .resto-heading-2 {
    font-size: 1.5rem;
  }

  .resto-logo-main {
    font-size: 1rem;
  }

  .resto-header-tel span {
    display: none;
  }
}
