/* =============================================
   MAISON SOLÈNE — Stylesheet Premium
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500&display=swap');

/* ── Variables ── */
:root {
  --noir:        #090909;
  --noir-doux:   #121212;
  --gris-section:#161616;
  --or:          #C4A165;
  --or-clair:    #D4B585;
  --or-pale:     #EAD9BA;
  --creme:       #F0EBE1;
  --creme-doux:  #FAF7F2;
  --blanc:       #FFFFFF;
  --texte-gris:  #7A7A72;
  --bordure:     rgba(196,161,101,0.25);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', system-ui, sans-serif;

  --transition: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 2px;
}

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

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

body {
  background: var(--noir);
  color: var(--creme);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--noir); }
::-webkit-scrollbar-thumb { background: var(--or); border-radius: 2px; }

/* ── Sélection ── */
::selection { background: var(--or); color: var(--noir); }

/* =============================================
   NAVIGATION
   ============================================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(9,9,9,0.96);
  backdrop-filter: blur(12px);
  padding: 18px 60px;
  border-bottom: 1px solid var(--bordure);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--creme);
}

.nav-logo span {
  color: var(--or);
}

.nav-links {
  display: flex;
  gap: 42px;
  align-items: center;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--creme);
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--or);
  transition: width 0.3s ease;
}

.nav-links a:hover { opacity: 1; color: var(--or); }
.nav-links a:hover::after { width: 100%; }

.nav-links .nav-cta {
  border: 1px solid var(--or);
  padding: 10px 24px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--or);
  opacity: 1;
  transition: background 0.3s, color 0.3s;
}

.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: var(--or); color: var(--noir); }

/* ── Menu burger mobile ── */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--creme);
  transition: var(--transition);
}

/* =============================================
   HERO
   ============================================= */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&q=85');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(9,9,9,0.92) 0%,
    rgba(9,9,9,0.45) 50%,
    rgba(9,9,9,0.20) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 80px;
  max-width: 820px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-eyebrow span {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--or);
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--or);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--or-clair);
}

.hero-desc {
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(240,235,225,0.65);
  max-width: 420px;
  margin-bottom: 40px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--or);
  color: var(--noir);
}

.btn-primary:hover {
  background: var(--or-clair);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--creme);
  border: 1px solid rgba(240,235,225,0.3);
  padding: 15px 36px;
}

.btn-ghost:hover {
  border-color: var(--or);
  color: var(--or);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--texte-gris);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--or), transparent);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =============================================
   SECTIONS COMMUNES
   ============================================= */

section { padding: 100px 60px; }

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.section-eyebrow span {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--or);
}

.section-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--or);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
}

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

.section-subtitle {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--texte-gris);
  line-height: 1.9;
  max-width: 520px;
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--or);
  margin: 30px 0;
}

.divider-center {
  margin: 30px auto;
}

/* =============================================
   ABOUT
   ============================================= */

.about {
  background: var(--noir-doux);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 560px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 80%;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  object-fit: cover;
  border: 6px solid var(--noir-doux);
}

.about-badge {
  position: absolute;
  bottom: 60px;
  left: 20px;
  background: var(--or);
  color: var(--noir);
  padding: 24px 28px;
  text-align: center;
  z-index: 2;
}

.about-badge .year {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  display: block;
  line-height: 1;
}

.about-badge .year-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

.about-text .section-subtitle {
  max-width: 100%;
  margin-top: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

.stat {
  padding-top: 20px;
  border-top: 1px solid var(--bordure);
}

.stat-number {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--or);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--texte-gris);
  margin-top: 6px;
  display: block;
}

/* =============================================
   FEATURED DISHES
   ============================================= */

.featured {
  background: var(--gris-section);
  text-align: center;
}

.featured-header {
  max-width: 600px;
  margin: 0 auto 70px;
}

.featured-header .section-eyebrow { justify-content: center; }
.featured-header .section-eyebrow::before { display: none; }
.featured-header .section-eyebrow::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--or);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.dish-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.dish-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.dish-card:hover img { transform: scale(1.08); }

.dish-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(9,9,9,0.9) 0%,
    rgba(9,9,9,0.2) 60%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 30px;
  transition: var(--transition);
}

.dish-category {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 8px;
}

.dish-name {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 8px;
}

.dish-desc {
  font-size: 0.78rem;
  color: rgba(240,235,225,0.6);
  line-height: 1.7;
  transform: translateY(12px);
  opacity: 0;
  transition: var(--transition);
}

.dish-price {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--or);
  margin-top: 12px;
}

.dish-card:hover .dish-desc {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   CITATION / AMBIANCE
   ============================================= */

.quote-section {
  background-image: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  text-align: center;
  padding: 140px 60px;
}

.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(9,9,9,0.78);
}

.quote-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.quote-mark {
  font-family: var(--serif);
  font-size: 6rem;
  color: var(--or);
  line-height: 0.5;
  display: block;
  margin-bottom: 30px;
  opacity: 0.6;
}

.quote-text {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: var(--creme);
  margin-bottom: 30px;
}

.quote-author {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--or);
}

/* =============================================
   MENU APERÇU
   ============================================= */

.menu-preview {
  background: var(--noir);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.menu-preview-col .section-subtitle { margin-top: 16px; }

.menu-list {
  margin-top: 50px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  gap: 20px;
  transition: border-color 0.3s;
}

.menu-item:hover { border-color: var(--bordure); }

.menu-item-info {}

.menu-item-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--creme);
  display: block;
}

.menu-item-detail {
  font-size: 0.75rem;
  color: var(--texte-gris);
  display: block;
  margin-top: 3px;
  font-style: italic;
}

.menu-item-price {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--or);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-preview-img {
  margin-top: 50px;
  position: relative;
}

.menu-preview-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.menu-cta {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or);
  transition: gap 0.3s;
}

.menu-cta::after {
  content: '→';
  font-size: 1rem;
}

.menu-cta:hover { gap: 22px; }

/* =============================================
   RESERVATION CTA
   ============================================= */

.reservation {
  background: var(--or);
  text-align: center;
  padding: 80px 60px;
}

.reservation .section-eyebrow { justify-content: center; }
.reservation .section-eyebrow::before { background: var(--noir); }
.reservation .section-eyebrow span { color: var(--noir); }

.reservation .section-title {
  color: var(--noir);
  margin-bottom: 12px;
}

.reservation .section-title em { color: rgba(9,9,9,0.5); }

.reservation p {
  color: rgba(9,9,9,0.65);
  font-size: 0.85rem;
  margin-bottom: 36px;
}

.btn-dark {
  background: var(--noir);
  color: var(--creme);
  padding: 16px 40px;
}

.btn-dark:hover {
  background: var(--gris-section);
  transform: translateY(-2px);
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: var(--noir-doux);
  border-top: 1px solid var(--bordure);
  padding: 70px 60px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--bordure);
}

.footer-brand .nav-logo {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.8rem;
  color: var(--texte-gris);
  line-height: 1.9;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 24px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 0.82rem;
  color: var(--texte-gris);
  transition: color 0.3s;
}

.footer-col ul li a:hover { color: var(--creme); }

.footer-col p {
  font-size: 0.82rem;
  color: var(--texte-gris);
  line-height: 1.9;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: var(--texte-gris);
}

.footer-bottom a {
  color: var(--texte-gris);
  transition: color 0.3s;
}

.footer-bottom a:hover { color: var(--or); }

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--texte-gris);
  transition: color 0.3s;
}

.footer-social a:hover { color: var(--or); }

/* =============================================
   PAGE HERO (pages internes)
   ============================================= */

.page-hero {
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,9,9,0.88) 0%, rgba(9,9,9,0.3) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 60px;
}

.page-hero-content .section-eyebrow { margin-bottom: 14px; }

.page-hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
}

.page-hero-content h1 em {
  font-style: italic;
  color: var(--or-clair);
}

/* =============================================
   PAGE MENU
   ============================================= */

.menu-section {
  background: var(--noir);
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 60px;
}

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

.menu-category-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--bordure);
}

.menu-category-number {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--or);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
}

.menu-category-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--creme);
}

.menu-full-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  align-items: start;
  transition: border-color 0.3s;
}

.menu-full-item:hover { border-color: var(--bordure); }

.menu-full-item-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--creme);
  display: block;
  margin-bottom: 6px;
}

.menu-full-item-desc {
  font-size: 0.78rem;
  color: var(--texte-gris);
  line-height: 1.8;
  font-style: italic;
}

.menu-full-item-right {
  text-align: right;
  flex-shrink: 0;
}

.menu-full-item-price {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--or);
  display: block;
}

.menu-full-item-tag {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--texte-gris);
  margin-top: 4px;
  display: block;
}

.menu-note {
  background: var(--gris-section);
  padding: 24px 32px;
  margin-top: 60px;
  font-size: 0.78rem;
  color: var(--texte-gris);
  line-height: 1.9;
  border-left: 2px solid var(--or);
}

/* =============================================
   PAGE CONTACT
   ============================================= */

.contact-grid {
  background: var(--noir);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}

.contact-info {
  padding: 80px 60px;
  background: var(--gris-section);
}

.contact-item {
  margin-bottom: 48px;
}

.contact-item-label {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--or);
  display: block;
  margin-bottom: 10px;
}

.contact-item-value {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--creme);
  line-height: 1.6;
}

.contact-item-value a { transition: color 0.3s; }
.contact-item-value a:hover { color: var(--or); }

.contact-form-wrap {
  padding: 80px 60px;
}

.contact-form-wrap h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.contact-form-wrap p {
  font-size: 0.8rem;
  color: var(--texte-gris);
  margin-bottom: 36px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--texte-gris);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: var(--gris-section);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--creme);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  padding: 14px 18px;
  transition: border-color 0.3s;
  outline: none;
  border-radius: var(--radius);
}

.form-control:focus { border-color: var(--or); }
.form-control::placeholder { color: var(--texte-gris); font-size: 0.82rem; }

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

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

.map-section {
  height: 400px;
  position: relative;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(80%) contrast(1.1) brightness(0.7);
  transition: filter 0.5s;
}

.map-section:hover iframe { filter: grayscale(30%) contrast(1.05) brightness(0.85); }

/* =============================================
   PAGE MENTIONS LÉGALES
   ============================================= */

.legal-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 60px;
}

.legal-block {
  margin-bottom: 52px;
}

.legal-block h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--creme);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--bordure);
}

.legal-block h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--or);
  margin: 18px 0 10px;
}

.legal-block p, .legal-block li {
  font-size: 0.84rem;
  color: var(--texte-gris);
  line-height: 1.9;
  margin-bottom: 10px;
}

.legal-block ul { padding-left: 18px; }
.legal-block ul li { list-style: disc; }

/* =============================================
   ANIMATIONS
   ============================================= */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .nav { padding: 24px 40px; }
  .nav.scrolled { padding: 16px 40px; }
  section { padding: 80px 40px; }
  .about { grid-template-columns: 1fr; gap: 50px; }
  .about-images { height: 420px; }
  .menu-preview { grid-template-columns: 1fr; gap: 50px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .burger { display: flex; }
  section { padding: 70px 24px; }
  .hero-content { padding: 0 24px 60px; }
  .hero-scroll { display: none; }
  .featured-grid { grid-template-columns: 1fr; }
  .dish-card { aspect-ratio: 4/3; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer { padding: 50px 24px 30px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .page-hero-content { padding: 0 24px 40px; }
  .menu-section { padding: 70px 24px; }
  .contact-info, .contact-form-wrap { padding: 50px 24px; }
  .legal-section { padding: 60px 24px; }
}

/* ── Nav mobile menu ── */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--noir);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.nav-mobile.open { transform: translateX(0); }

.nav-mobile a {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--creme);
  transition: color 0.3s;
}

.nav-mobile a:hover { color: var(--or); }

.nav-mobile-close {
  position: absolute;
  top: 28px;
  right: 24px;
  background: none;
  border: none;
  color: var(--creme);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}
