/* Le Comptoir Gourmand — production stylesheet
   Rebuilt from the Claude Design prototype, pixel-matched. */

:root {
  --accent: #E27D5F;
  --ink: #2F3E4E;
  --muted: #9AA7B2;
  --muted-2: #8A97A3;
  --cream: #FAF6F0;
  --white: #FFFFFF;
  --footer-bg: #26323F;
  --serif: 'Playfair Display', Georgia, serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, 'Nunito Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--accent); text-decoration: none; transition: color .18s; }
a:hover { color: var(--ink); }

::selection { background: rgba(226,125,95,.28); }

input, select, textarea, button { font-family: Inter, system-ui, sans-serif; }

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

h1, h2, h3 { margin: 0; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section { scroll-margin-top: 90px; padding: 104px 0; }
.section-white { background: var(--white); }
.section-cream { background: var(--cream); }
.section-dark { background: var(--ink); padding: 88px 0; }

.section .wrap,
#accueil .wrap,
#reservation .wrap,
#lieu .wrap,
#infos .wrap { max-width: 1140px; }

/* ---------- Eyebrow / section title ---------- */
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow-center { justify-content: center; }
.eyebrow-line { display: inline-block; width: 38px; height: 2px; background: var(--accent); flex-shrink: 0; }
.eyebrow span:not(.eyebrow-line) { font-size: 12px; font-weight: 600; letter-spacing: .24em; color: var(--accent); }

.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.15;
  margin-top: 18px;
  color: var(--ink);
}

.section-lead {
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(47,62,78,.74);
  margin-top: 22px;
  max-width: 48ch;
}

.accent-star { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .03em;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  transition: transform .18s, box-shadow .18s, border-color .18s, color .18s;
}
.btn-primary {
  background: var(--accent);
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(226,125,95,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(226,125,95,.45); color: #FFFFFF; }
.btn-outline {
  color: var(--ink);
  background: transparent;
  border: 1.5px solid rgba(47,62,78,.28);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 15px 30px; font-size: 14.5px; }
.btn-nav { padding: 11px 24px; font-size: 13px; box-shadow: 0 4px 14px rgba(226,125,95,.35); }
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(226,125,95,.45); }
.btn-submit { border: none; padding: 16px; font-size: 15px; margin-top: 6px; width: 100%; justify-content: center; }
.btn-edit {
  margin-top: 22px;
  background: transparent;
  border: 1.5px solid rgba(47,62,78,.25);
  color: var(--ink);
  padding: 12px 26px;
}
.btn-edit:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250,246,240,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(47,62,78,.09);
}
.header-wrap {
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand-text { display: flex; flex-direction: column; gap: 2px; }
.brand-name { font-family: var(--serif); font-size: 20px; font-weight: 600; letter-spacing: .01em; line-height: 1; color: var(--ink); }
.brand-tag { font-size: 9.5px; font-weight: 600; letter-spacing: .3em; color: var(--accent); }

.nav { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.nav a:not(.btn) { color: var(--ink); font-size: 13.5px; font-weight: 500; }
.nav a:not(.btn):hover { color: var(--accent); }

/* ---------- Hero ---------- */
.hero { background: var(--cream); }
.hero-grid {
  padding: 76px 24px 110px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,380px), 1fr));
  gap: 56px;
  align-items: center;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(46px, 6.2vw, 74px);
  line-height: 1.04;
  margin-top: 22px;
  color: var(--ink);
  text-wrap: balance;
}
.hero-title em { color: var(--accent); font-weight: 500; font-style: normal; }
.hero-lead {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(47,62,78,.74);
  max-width: 50ch;
  margin-top: 24px;
  text-wrap: pretty;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero-meta {
  display: flex; gap: 26px; flex-wrap: wrap;
  margin-top: 40px; font-size: 13px; color: var(--muted);
}

.hero-media { position: relative; margin: 14px 18px 22px 14px; }
.hero-media-frame {
  position: absolute; top: 18px; left: 18px; right: -16px; bottom: -18px;
  border: 1.5px solid var(--accent); border-radius: 22px; opacity: .55; pointer-events: none;
}
.hero-photo {
  width: 100%; height: 520px; object-fit: cover;
  border-radius: 18px; position: relative;
}
.hero-badge {
  position: absolute; bottom: -30px; left: -24px;
  width: 116px; height: 116px; background: #FFFFFF; border-radius: 50%;
  box-shadow: 0 10px 30px rgba(47,62,78,.16);
  display: flex; align-items: center; justify-content: center; pointer-events: none;
}

/* ---------- Photo credit caption ---------- */
.photo-credit {
  font-size: 10.5px; color: rgba(47,62,78,.5); margin: 6px 0 0; line-height: 1.3;
}
.photo-credit a { color: rgba(47,62,78,.6); text-decoration: underline; text-underline-offset: 2px; }
.photo-credit a:hover { color: var(--accent); }
.photo-credit-in {
  position: absolute; left: 10px; bottom: 10px; margin: 0;
  padding: 4px 9px; border-radius: 6px;
  background: rgba(20,24,30,.55); backdrop-filter: blur(4px);
  color: rgba(255,255,255,.9); font-size: 10.5px;
}
.photo-credit-in a { color: rgba(255,255,255,.95); }
.photo-credit-in a:hover { color: var(--accent); }

/* ---------- Le Lieu ---------- */
.lieu-grid {
  padding: 104px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,360px), 1fr));
  gap: 64px;
  align-items: center;
}
.lieu-media { position: relative; margin-bottom: 34px; }
.lieu-photo { width: 100%; height: 480px; object-fit: cover; border-radius: 18px; }
.lieu-quote {
  position: absolute; bottom: -34px; right: -6px; max-width: 320px;
  background: var(--cream); border: 1px solid rgba(47,62,78,.08); border-radius: 14px;
  padding: 20px 24px; box-shadow: 0 14px 34px rgba(47,62,78,.12); pointer-events: none;
}
.quote-text { font-family: var(--serif); font-style: italic; font-size: 17px; line-height: 1.5; margin: 0; color: var(--ink); }
.quote-author { font-size: 12px; font-weight: 600; letter-spacing: .14em; color: var(--accent); margin: 10px 0 0; }

.points { display: flex; flex-direction: column; gap: 22px; margin-top: 36px; }
.point { display: flex; gap: 18px; align-items: baseline; }
.point-num { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--accent); min-width: 30px; }
.point p { margin: 0; font-size: 14.5px; line-height: 1.6; color: rgba(47,62,78,.78); }
.point strong { color: var(--ink); font-weight: 600; }

/* ---------- Menu ---------- */
.menu-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.menu-header-lead { font-size: 15px; line-height: 1.7; color: rgba(47,62,78,.68); margin: 14px 0 0; max-width: 56ch; }

.formula-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,250px), 1fr));
  gap: 20px;
  margin-top: 48px;
}
.formula-card {
  background: var(--white); border: 1px solid rgba(47,62,78,.07);
  border-radius: 16px; padding: 28px;
  transition: transform .2s, box-shadow .2s;
}
.formula-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(47,62,78,.1); }
.formula-eyebrow { font-size: 11.5px; font-weight: 600; letter-spacing: .18em; color: var(--muted); margin: 0; }
.formula-title { font-family: var(--serif); font-weight: 600; font-size: 22px; margin: 10px 0 0; color: var(--ink); }
.formula-row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 8px; font-size: 13.5px; color: rgba(47,62,78,.72);
}
.formula-row-top { margin-top: 18px; padding-top: 14px; border-top: 1px dotted rgba(154,167,178,.5); }
.formula-row .price { font-family: var(--serif); font-size: 21px; color: var(--accent); white-space: nowrap; }
.formula-note { font-size: 13px; line-height: 1.55; color: var(--muted); margin: 12px 0 0; }

.signature-banner {
  background: var(--ink); border-radius: 20px; margin-top: 44px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,320px), 1fr));
  overflow: hidden;
}
.signature-media { position: relative; min-height: 300px; }
.signature-media img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; }
.signature-content { padding: 44px 46px; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.signature-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: .24em; color: var(--accent); margin: 0; }
.signature-title { font-family: var(--serif); font-weight: 500; font-size: clamp(26px,3vw,34px); line-height: 1.2; margin: 0; color: var(--cream); }
.signature-text { font-size: 15px; line-height: 1.7; color: rgba(250,246,240,.75); margin: 0; }
.signature-price { font-family: var(--serif); font-size: 28px; color: var(--accent); margin: 6px 0 0; }

.menu-tabs { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 64px; }
.tab-btn {
  background: transparent; color: var(--ink);
  border: 1.5px solid rgba(47,62,78,.25);
  padding: 11px 24px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer; transition: all .18s;
}
.tab-btn.is-active {
  background: var(--accent); color: #FFFFFF;
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(226,125,95,.3);
}

.menu-panel { max-width: 980px; margin: 44px auto 0; }
.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,360px), 1fr));
  gap: 24px 60px;
}
.menu-item { display: flex; align-items: baseline; gap: 12px; }
.menu-item-info { min-width: 0; }
.menu-item-name { font-size: 15.5px; font-weight: 600; color: var(--ink); }
.menu-item-name .tag { font-size: 12px; font-weight: 500; color: var(--accent); font-style: italic; }
.menu-item-desc { font-size: 13.5px; line-height: 1.55; color: var(--muted-2); margin-top: 3px; }
.menu-item-dots { flex: 1; border-bottom: 1px dotted rgba(154,167,178,.55); min-width: 24px; transform: translateY(-4px); }
.menu-item-price { font-family: var(--serif); font-size: 18px; color: var(--accent); white-space: nowrap; }

.menu-fineprint { text-align: center; font-size: 12.5px; font-style: italic; color: var(--muted); margin: 44px 0 0; }

/* ---------- Reservation ---------- */
.reservation-grid {
  padding: 104px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,340px), 1fr));
  gap: 56px;
  align-items: start;
}
.reservation-lead { max-width: 48ch; }
.reservation-hours { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; font-size: 14.5px; color: rgba(47,62,78,.78); }
.hours-row {
  display: flex; justify-content: space-between; gap: 16px; max-width: 380px;
  border-bottom: 1px dotted rgba(154,167,178,.5); padding-bottom: 10px;
}
.hours-day { font-weight: 600; color: var(--ink); }

.reservation-callout {
  background: var(--cream); border: 1px solid rgba(47,62,78,.08); border-radius: 14px;
  padding: 22px 26px; margin-top: 36px; max-width: 420px;
}
.callout-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: .16em; color: var(--accent); margin: 0; }
.callout-text { font-size: 14px; line-height: 1.65; color: rgba(47,62,78,.75); margin: 10px 0 0; }
.callout-phone { display: inline-block; margin-top: 12px; font-family: var(--serif); font-size: 20px; color: var(--ink); white-space: nowrap; }
.callout-phone:hover { color: var(--accent); }

.reservation-panel {
  background: var(--cream); border: 1px solid rgba(47,62,78,.08);
  border-radius: 20px; padding: 38px; box-shadow: 0 20px 50px rgba(47,62,78,.08);
}
.reservation-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,180px), 1fr));
  gap: 16px;
}
.field { display: flex; flex-direction: column; }
.field-full { grid-column: 1 / -1; }
.field label {
  display: block; font-size: 11.5px; font-weight: 600; letter-spacing: .1em;
  color: var(--muted); margin-bottom: 7px;
}
.label-optional { font-weight: 400; letter-spacing: 0; text-transform: none; }
.field input, .field select, .field textarea {
  width: 100%; box-sizing: border-box; padding: 12px 14px;
  border: 1px solid rgba(47,62,78,.16); border-radius: 10px;
  background: var(--white); font-size: 14px; color: var(--ink);
  outline: none; transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 74px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(226,125,95,.16);
}

.stepper {
  display: flex; align-items: center; gap: 18px;
  background: var(--white); border: 1px solid rgba(47,62,78,.16); border-radius: 10px;
  padding: 8px 12px; justify-content: space-between;
}
.stepper-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid rgba(47,62,78,.2); background: transparent;
  font-size: 18px; color: var(--ink); cursor: pointer; transition: border-color .15s, color .15s;
}
.stepper-btn:hover { border-color: var(--accent); color: var(--accent); }
.stepper-value { font-size: 15px; font-weight: 600; color: var(--ink); }

.form-error {
  background: rgba(226,125,95,.1); border: 1px solid rgba(226,125,95,.35);
  border-radius: 10px; padding: 12px 16px; font-size: 13.5px; color: #B4532F;
}
.form-note { text-align: center; font-size: 12px; color: var(--muted); margin: 2px 0 0; }

.confirmation { text-align: center; padding: 26px 10px; }
.confirmation-icon {
  width: 68px; height: 68px; border-radius: 50%; background: rgba(226,125,95,.14);
  display: flex; align-items: center; justify-content: center; margin: 0 auto;
  font-size: 30px; color: var(--accent);
}
.confirmation-title { font-family: var(--serif); font-weight: 600; font-size: 28px; color: var(--ink); margin: 22px 0 0; }
.confirmation-card {
  background: var(--white); border: 1px dashed rgba(226,125,95,.5); border-radius: 14px;
  padding: 20px 24px; margin: 22px auto 0; max-width: 360px;
}
.confirmation-card p { font-size: 15px; line-height: 1.7; color: var(--ink); margin: 0; }
.capitalize { text-transform: capitalize; }
.confirmation-note { font-size: 13.5px; color: var(--muted); margin: 18px 0 0; }

/* ---------- Gallery ---------- */
.gallery-heading { text-align: center; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%,250px), 1fr));
  grid-auto-rows: 185px;
  grid-auto-flow: dense;
  gap: 14px;
  margin-top: 48px;
}
.gallery-item {
  position: relative; margin: 0; width: 100%; height: 100%;
  border-radius: 14px; overflow: hidden;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item-tall { grid-row: span 2; }
.gallery-item figcaption.photo-credit-in { position: absolute; }

/* ---------- Reviews ---------- */
.reviews-grid {
  padding: 104px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,320px), 1fr));
  gap: 20px;
  align-items: stretch;
}
.review-highlight {
  background: var(--ink); border-radius: 18px; padding: 38px;
  display: flex; flex-direction: column; justify-content: center; gap: 10px;
}
.review-highlight .eyebrow span:not(.eyebrow-line) { color: var(--accent); }
.review-score { font-family: var(--serif); font-size: 76px; line-height: 1; margin: 14px 0 0; color: var(--cream); }
.review-score span { font-size: 30px; color: rgba(250,246,240,.55); }
.review-stars { font-size: 17px; letter-spacing: 3px; color: var(--accent); margin: 4px 0 0; }
.review-count { font-size: 13.5px; color: rgba(250,246,240,.65); margin: 6px 0 0; }

.review-card {
  background: var(--cream); border: 1px solid rgba(47,62,78,.06); border-radius: 18px;
  padding: 30px; display: flex; flex-direction: column; gap: 14px;
  transition: transform .2s, box-shadow .2s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(47,62,78,.1); }
.stars { font-size: 13px; letter-spacing: 2.5px; color: var(--accent); }
.star-dim { opacity: .3; }
.review-text { font-size: 14.5px; line-height: 1.7; color: rgba(47,62,78,.85); margin: 0; flex: 1; }
.review-footer { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.review-name { font-size: 13.5px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.review-date { font-size: 12px; color: var(--muted); }

/* ---------- Infos / Map ---------- */
.infos-grid {
  padding: 104px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,340px), 1fr));
  gap: 56px;
  align-items: center;
}
.infos-block { display: flex; flex-direction: column; gap: 16px; margin-top: 30px; }
.infos-row { display: flex; gap: 48px; flex-wrap: wrap; }
.infos-label { font-size: 11px; font-weight: 600; letter-spacing: .18em; color: var(--muted); margin: 0; }
.infos-value { font-size: 15.5px; color: var(--ink); margin: 4px 0 0; }
.infos-value a { color: var(--ink); white-space: nowrap; }
.infos-value a:hover { color: var(--accent); }

.infos-schedule { margin-top: 30px; max-width: 420px; }
.infos-schedule .infos-label { margin: 0 0 10px; }
.schedule-row {
  display: flex; justify-content: space-between; gap: 16px;
  border-bottom: 1px dotted rgba(154,167,178,.5); padding: 9px 0; font-size: 14px;
}
.schedule-row-last { border-bottom: none; }
.schedule-day { font-weight: 600; color: var(--ink); }
.schedule-time { color: rgba(47,62,78,.75); text-align: right; }
.schedule-closed { color: var(--accent); font-weight: 600; }

.infos-grid > a.btn { margin-top: 30px; }

.map-frame {
  border-radius: 20px; overflow: hidden; border: 1px solid rgba(47,62,78,.1);
  box-shadow: 0 20px 50px rgba(47,62,78,.1); height: 480px; background: #E9E4DC;
}
.map-frame iframe { border: 0; width: 100%; height: 100%; display: block; }

/* ---------- Contact ---------- */
.contact-grid {
  padding: 88px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,280px), 1fr));
  gap: 52px;
}
.contact-title { font-family: var(--serif); font-weight: 600; font-size: 26px; color: var(--cream); margin: 0; }
.contact-address { font-size: 14.5px; line-height: 1.75; color: rgba(250,246,240,.68); margin: 16px 0 0; }
.contact-links { font-size: 14.5px; line-height: 1.8; margin: 14px 0 0; }
.contact-links a { color: var(--accent); }
.contact-links a:hover { color: var(--cream); }

.contact-label { font-size: 12px; font-weight: 600; letter-spacing: .22em; color: rgba(250,246,240,.5); margin: 0; }
.social-links { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.social-links a { font-size: 15px; color: var(--cream); display: inline-flex; align-items: baseline; gap: 10px; }
.social-links a:hover { color: var(--accent); }
.social-icon { font-family: var(--serif); font-style: italic; color: var(--accent); }
.contact-sub { font-size: 13px; line-height: 1.65; color: rgba(250,246,240,.55); margin: 18px 0 0; }
.contact-sub-nl { font-size: 14px; line-height: 1.7; color: rgba(250,246,240,.68); }

.newsletter-form { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1; min-width: 180px; box-sizing: border-box; padding: 13px 16px;
  border: 1px solid rgba(250,246,240,.25); border-radius: 999px;
  background: rgba(250,246,240,.07); font-size: 14px; color: var(--cream);
  outline: none; transition: border-color .15s;
}
.newsletter-form input:focus { border-color: var(--accent); }
.newsletter-form input::placeholder { color: rgba(250,246,240,.45); }
.newsletter-form .btn { border: none; padding: 13px 26px; font-size: 13.5px; }
.newsletter-success { margin: 18px 0 0; font-size: 14.5px; color: var(--accent); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--footer-bg); }
.footer-top {
  padding: 44px 24px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand-text { display: flex; flex-direction: column; gap: 3px; }
.footer-brand-name { font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--cream); line-height: 1; }
.footer-brand-tag { font-size: 9px; font-weight: 600; letter-spacing: .3em; color: var(--accent); }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a { font-size: 13px; color: rgba(250,246,240,.65); }
.footer-nav a:hover { color: var(--accent); }
.footer-hours { font-size: 12.5px; line-height: 1.7; color: rgba(250,246,240,.5); margin: 0; text-align: right; }

.footer-bottom {
  padding: 18px 24px 30px; border-top: 1px solid rgba(250,246,240,.1);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: rgba(250,246,240,.4); margin: 0; }
.footer-bottom a { color: rgba(250,246,240,.55); }
.footer-bottom a:hover { color: var(--accent); }
.footer-credit { color: var(--accent) !important; font-weight: 600; }
.footer-credit:hover { color: var(--cream) !important; }

/* ---------- Responsive tweaks ---------- */
@media (max-width: 640px) {
  .header-wrap { padding: 10px 16px; }
  .nav { gap: 14px 18px; }
  .wrap { padding: 0 16px; }
  .hero-grid, .lieu-grid, .reservation-grid, .infos-grid, .contact-grid { padding-left: 16px; padding-right: 16px; }
  .footer-hours { text-align: left; }
}
