/* ===================================================
   LE CAVEAU DE L'OURS — Feuille de style principale
   =================================================== */

/* ---------- Variables ---------- */
:root {
  --bg:          #0d0705;
  --bg-alt:      #130905;
  --bg-card:     #1a0f09;
  --brown-dark:  #2a1208;
  --brown:       #5c2d16;
  --brown-mid:   #7a3e22;
  --gold:        #c9a96e;
  --gold-light:  #e8c98a;
  --gold-dim:    #8a6f42;
  --cream:       #f0e0c0;
  --text:        #cdbfa4;
  --text-muted:  #7a6a54;
  --white:       #ffffff;
  --border:      rgba(201,169,110,.18);

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Lato', Arial, sans-serif;

  --ease: cubic-bezier(.4,0,.2,1);
  --transition: .35s var(--ease);
  --shadow-sm:  0 2px 12px rgba(0,0,0,.35);
  --shadow:     0 6px 30px rgba(0,0,0,.5);
  --shadow-lg:  0 16px 60px rgba(0,0,0,.65);

  --radius: 4px;
  --container: 1160px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--bg); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
}

.section-label {
  display: block;
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-desc {
  max-width: 560px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.divider {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 1.5rem 0 2.5rem;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.divider-icon { color: var(--gold); font-size: .85rem; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 6rem 0; }

.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }
.text-center .divider { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-gold {
  background: var(--gold);
  color: var(--bg);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-2px);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(13,7,5,.97);
  padding: .75rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.6);
  backdrop-filter: blur(8px);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.logo-bear { font-size: 1.6rem; line-height: 1; }
.logo-text  { display: flex; flex-direction: column; }
.logo-main  { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: var(--cream); line-height: 1.1; }
.logo-sub   { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  padding: .6rem 1.3rem !important;
  border: 1px solid var(--gold) !important;
  border-radius: var(--radius) !important;
  color: var(--gold) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--bg) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&q=80');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,7,5,.55) 0%,
    rgba(13,7,5,.72) 60%,
    rgba(13,7,5,.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 820px;
}

.hero-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .3s forwards;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .6s forwards;
}
.hero-title em { color: var(--gold); display: block; }

.hero-sub {
  font-size: 1.1rem;
  color: var(--cream);
  opacity: 0;
  animation: fadeUp .9s var(--ease) .9s forwards;
  margin-bottom: 2.5rem;
  font-weight: 300;
  font-style: italic;
  font-family: var(--serif);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s var(--ease) 1.1s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--gold);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s ease 1.8s forwards;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(.5); opacity: .4; }
}

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

/* =============================================
   ABOUT STRIP (homepage)
   ============================================= */
.about-strip {
  background: var(--bg-alt);
  padding: 5rem 0;
}
.about-strip .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 120px; height: 120px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  text-align: center;
  box-shadow: var(--shadow);
}
.about-img-badge .badge-num  { font-family: var(--serif); font-size: 2rem; font-weight: 700; line-height: 1; }
.about-img-badge .badge-text { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
.about-feat {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.about-feat-icon {
  width: 38px; height: 38px;
  background: var(--brown-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .9rem;
  flex-shrink: 0;
}
.about-feat h5 {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: .2rem;
}
.about-feat p { font-size: .82rem; color: var(--text-muted); }

/* =============================================
   FEATURED DISHES (homepage)
   ============================================= */
.featured {
  background: var(--bg);
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.dish-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.dish-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.dish-card:hover .dish-img { transform: scale(1.04); }
.dish-img-wrap { overflow: hidden; }

.dish-body {
  padding: 1.5rem;
}
.dish-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.dish-body h3 {
  font-size: 1.2rem;
  margin-bottom: .5rem;
}
.dish-body p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.dish-price {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--gold);
}

/* =============================================
   ATMOSPHERE / GALLERY
   ============================================= */
.atmosphere {
  background: var(--bg-alt);
  padding: 6rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: 3rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
  transition: transform .6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,7,5,.45);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  position: relative;
  padding: 7rem 0;
  text-align: center;
  overflow: hidden;
}
.cta-band-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1537047902294-62a40c20a6ae?w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta-band-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,7,5,.82);
}
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-band p {
  color: var(--cream);
  margin-bottom: 2rem;
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.1rem;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { background: var(--bg); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.testimonial-stars { color: var(--gold); margin-bottom: 1rem; font-size: .9rem; }
.testimonial-card blockquote {
  font-family: var(--serif);
  font-style: italic;
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 42px; height: 42px;
  background: var(--brown);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--gold);
  font-size: .95rem;
}
.testimonial-author cite { font-size: .82rem; color: var(--text-muted); font-style: normal; }
.testimonial-author strong { display: block; color: var(--cream); font-size: .9rem; }

/* =============================================
   MENU PAGE
   ============================================= */
.page-hero {
  position: relative;
  height: 40vh;
  min-height: 300px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 0;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: rgba(13,7,5,.78);
}
.page-hero-content {
  position: relative; z-index: 1;
  padding-top: 5rem;
}
.page-hero-content h1 { font-size: clamp(2.2rem,5vw,3.5rem); color: var(--white); }

.menu-page { background: var(--bg); padding: 5rem 0; }

.menu-nav {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.menu-nav button {
  padding: .6rem 1.5rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 2rem;
  color: var(--text-muted);
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.menu-nav button:hover,
.menu-nav button.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}

.menu-section { display: none; }
.menu-section.visible { display: block; }

.menu-section-title {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 2rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}

.menu-items { display: flex; flex-direction: column; gap: 0; }

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(201,169,110,.08);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-info { flex: 1; }
.menu-item-info h4 {
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: .3rem;
}
.menu-item-info p {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.menu-item-badge {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 2rem;
  margin-left: .5rem;
  vertical-align: middle;
}
.badge-chef { background: rgba(201,169,110,.15); color: var(--gold); }
.badge-vege { background: rgba(80,160,80,.15); color: #7dc87d; }
.menu-price {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

/* =============================================
   RESERVATION PAGE
   ============================================= */
.reservation-section { background: var(--bg); padding: 5rem 0; }

.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.reservation-info h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--cream);
}
.reservation-info p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: .9rem;
  line-height: 1.8;
}

.info-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.info-block h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.info-block .hours-list { list-style: none; }
.info-block .hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  padding: .3rem 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  gap: 1rem;
}
.info-block .hours-list li:last-child { border-bottom: none; }
.info-block .hours-list .day { color: var(--text-muted); }
.info-block .hours-list .time { color: var(--cream); text-align: right; }
.info-block .hours-list .closed { color: var(--brown-mid); }
.info-block address p {
  display: flex; gap: .75rem; align-items: center;
  font-size: .88rem; margin-bottom: .5rem;
}
.info-block address p i { color: var(--gold); width: 16px; flex-shrink: 0; }
.info-block address a { color: var(--cream); transition: color var(--transition); }
.info-block address a:hover { color: var(--gold); }

/* Form */
.reservation-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.reservation-form h2 {
  font-size: 1.6rem;
  margin-bottom: .5rem;
}
.reservation-form .sub {
  color: var(--text-muted);
  font-size: .88rem;
  margin-bottom: 2rem;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { grid-column: span 2; }

.form-group label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--brown-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .8rem 1rem;
  color: var(--cream);
  font-family: var(--sans);
  font-size: .9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px rgba(201,169,110,.12);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--bg-card); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-submit { margin-top: 1.75rem; }
.form-submit .btn { width: 100%; justify-content: center; padding: 1rem; font-size: .88rem; }

.form-notice {
  font-size: .78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: .75rem;
}
.form-notice i { color: var(--gold-dim); }

.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: .9rem;
  margin-bottom: 1.5rem;
}
.alert-success { background: rgba(80,160,80,.12); border: 1px solid rgba(80,160,80,.3); color: #8fd98f; }
.alert-error   { background: rgba(200,60,60,.12);  border: 1px solid rgba(200,60,60,.3);  color: #e08080; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section { background: var(--bg); padding: 5rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.contact-card-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--brown-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}
.contact-card h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}
.contact-card p, .contact-card a {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.6;
}
.contact-card a:hover { color: var(--gold); }

.map-placeholder {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-muted);
  font-size: .85rem;
  text-align: center;
  overflow: hidden;
}
.map-placeholder i { font-size: 2.5rem; color: var(--brown-mid); }
.map-placeholder p { font-size: .8rem; color: var(--text-muted); }

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.contact-form-wrap h2 { font-size: 1.5rem; margin-bottom: .5rem; }
.contact-form-wrap .sub { color: var(--text-muted); font-size: .88rem; margin-bottom: 2rem; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--brown-dark);
  border-top: 1px solid var(--border);
  padding-top: 5rem;
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem 3.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr 1.2fr;
  gap: 3rem;
}
.footer-brand .footer-logo {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1rem;
}
.footer-tagline {
  font-size: .85rem;
  color: var(--text-muted);
  font-style: italic;
  font-family: var(--serif);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: var(--brown);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: .85rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--bg); }

.footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul a {
  font-size: .85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }

.footer-col .hours-list { list-style: none; }
.footer-col .hours-list li {
  font-size: .82rem;
  margin-bottom: .4rem;
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  flex-wrap: wrap;
}
.footer-col .hours-list .day { color: var(--text-muted); flex-shrink: 0; }
.footer-col .hours-list .time { color: var(--cream); }
.footer-col .hours-list .closed { color: var(--brown-mid); }

.footer-col address p {
  display: flex; gap: .65rem; align-items: flex-start;
  font-size: .83rem;
  color: var(--text-muted);
  margin-bottom: .6rem;
}
.footer-col address i { color: var(--gold-dim); margin-top: .25rem; flex-shrink: 0; }
.footer-col address a { color: var(--text-muted); transition: color var(--transition); }
.footer-col address a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom p { font-size: .78rem; color: var(--text-muted); }
.footer-credit { font-style: italic; font-family: var(--serif); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .dishes-grid       { grid-template-columns: repeat(2,1fr); }
  .gallery-grid      { grid-template-columns: repeat(2,1fr); }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .about-strip .container { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { max-width: 600px; margin: 0 auto; }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: rgba(13,7,5,.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transition: right var(--transition);
    backdrop-filter: blur(12px);
    border-left: 1px solid var(--border);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1rem; }
  .nav-toggle { display: flex; }

  .dishes-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .reservation-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .about-features { grid-template-columns: 1fr; }
  .about-img-badge { width: 90px; height: 90px; bottom: -1rem; right: -1rem; }
  .about-img-badge .badge-num { font-size: 1.5rem; }

  .hero-actions { flex-direction: column; align-items: center; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .reservation-form { padding: 1.5rem; }
  .contact-form-wrap { padding: 1.5rem; }
}
