:root {
  --cream: #F5F0E8;
  --beige: #EDE5D4;
  --beige-dark: #D4C9B0;
  --red: #C0392B;
  --red-dark: #9B2D20;
  --red-light: #E8453A;
  --brown: #5C4033;
  --text: #2A1F1A;
  --text-light: #7A6B5E;
  --white: #FDFAF5;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 4rem;
  background: transparent;
  transition: background 0.4s, backdrop-filter 0.4s;
}

nav.scrolled {
  background: rgba(245, 240, 232, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--beige-dark);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--red); }

.nav-cta {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  border: none;
  padding: 0.65rem 1.6rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--red-dark); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12rem 4rem 6rem;
  background: var(--cream);
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 6vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
  color: var(--text);
  margin-bottom: 2rem;
}

.hero-title em {
  font-style: italic;
  color: var(--red);
}

.hero-sub {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-light);
  max-width: 400px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.btn-primary {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  border: none;
  padding: 1rem 2.2rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}

.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn-ghost {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--beige-dark);
  padding: 1rem 2.2rem;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}

.btn-ghost:hover { border-color: var(--text); }

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--beige);
}

.hero-img-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(192,57,43,0.08) 0%, transparent 60%),
    url('image-1.png') center/cover no-repeat;
}

.hero-badge {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  background: var(--red);
  color: var(--white);
  padding: 1.5rem;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: spin-slow 20s linear infinite;
}

.hero-badge-inner {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.6;
}

.hero-badge-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: float 2s ease-in-out infinite;
}

.hero-scroll-hint::after {
  content: '';
  width: 1px;
  height: 2rem;
  background: var(--text-light);
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--red);
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 24s linear infinite;
}

.marquee-item {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 3rem;
}

.marquee-item span {
  color: rgba(255,255,255,0.4);
  margin-right: 3rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── ABOUT ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
}

.about-img {
  position: relative;
  overflow: hidden;
  background: var(--beige);
}

.about-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('image-2.png') center/cover no-repeat;
}

.about-img-label {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--cream);
  padding: 1rem 1.5rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}

.about-content {
  padding: 7rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--beige-dark);
  max-width: 4rem;
}

.about-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 3.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.about-title em { font-style: italic; color: var(--red); }

.about-text {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--beige-dark);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.4rem;
}

/* ── MENU / SPÉCIALITÉS ── */
.menu-section {
  padding: 8rem 4rem;
  background: var(--cream);
}

.menu-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 5rem;
}

.menu-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
}

.menu-title em { font-style: italic; color: var(--red); }

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

.menu-card {
  background: var(--white);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

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

.menu-card:hover .menu-card-overlay { opacity: 1; }

.menu-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.menu-card:hover .menu-card-img { transform: scale(1.04); }

.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(192,57,43,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.menu-card-body {
  padding: 1.8rem 2rem;
}

.menu-card-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}

.menu-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.menu-card-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-light);
  margin-top: 0.5rem;
  line-height: 1.6;
}

/* ── PDF BUTTON ── */
.pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

/* ── COMMANDES PERSONNALISÉES ── */
.custom-order-banner {
  margin-top: 3px;
  background: var(--text);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.custom-order-icon {
  font-size: 2rem;
  color: var(--red-light);
  flex-shrink: 0;
  line-height: 1;
}

.custom-order-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.custom-order-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  font-style: italic;
}

.custom-order-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .custom-order-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    gap: 1.5rem;
  }
}

/* ── HOURS ── */
.hours-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
}

.hours-img {
  background: url('image-3.png') center/cover no-repeat;
  position: relative;
}

.hours-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(192,57,43,0.15);
}

.hours-content {
  background: var(--text);
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hours-content .section-label { color: var(--red-light); }
.hours-content .section-label::after { background: rgba(255,255,255,0.15); }

.hours-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 3rem;
  line-height: 1.1;
}

.hours-title em { font-style: italic; color: var(--red-light); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hours-table td {
  padding: 0.9rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--white);
}

.hours-note {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* ── LOCATION ── */
.location-section {
  padding: 8rem 4rem;
  background: var(--beige);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.location-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 3.5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 2rem;
}

.location-title em { font-style: italic; color: var(--red); }

.location-text {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.location-icon {
  width: 2rem;
  height: 2rem;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.location-item-text {
  font-size: 1rem;
  color: var(--text);
}

.location-item-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.map-embed {
  width: 100%;
  height: 400px;
  border: 0;
  filter: sepia(20%) contrast(1.05);
}

/* ── CONTACT ── */
.contact-section {
  padding: 8rem 4rem;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 3.5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.contact-title em { font-style: italic; color: var(--red); }

.contact-text {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-mailto-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--red);
  color: var(--white);
  padding: 1.2rem 2.4rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.contact-mailto-btn:hover { background: var(--red-dark); transform: translateY(-2px); }

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: var(--cream);
  border: 1px solid var(--beige-dark);
  padding: 1.8rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-card-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
}

.contact-card-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.contact-card-value {
  font-size: 1rem;
  color: var(--text);
}

.contact-card-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-card-value a:hover { color: var(--red); }

/* ── PAYMENT ── */
.payment-strip {
  background: var(--white);
  padding: 3rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--beige-dark);
  border-bottom: 1px solid var(--beige-dark);
}

.payment-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}

.payment-methods {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.payment-chip {
  background: var(--beige);
  border: 1px solid var(--beige-dark);
  padding: 0.5rem 1.2rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

/* ── FOOTER ── */
footer {
  background: var(--text);
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.05em;
}

.footer-logo span { color: var(--red-light); font-style: italic; }

.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--red-light); }

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE TABLETTE ── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 2rem; }
  nav .nav-links { display: none; }
  nav .nav-cta { display: none; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 7rem 1.8rem 3rem; }
  .hero-right { height: 55vw; }

  .about { grid-template-columns: 1fr; }
  .about-img { height: 55vw; }
  .about-content { padding: 4rem 2rem; }

  .menu-section { padding: 5rem 2rem; }
  .menu-header { flex-direction: column; align-items: flex-start; gap: 2rem; margin-bottom: 3rem; }
  .menu-header > div:last-child { align-items: flex-start; width: 100%; }
  .menu-grid { grid-template-columns: 1fr; }

  .hours-section { grid-template-columns: 1fr; }
  .hours-img { height: 50vw; }
  .hours-content { padding: 4rem 2rem; }

  .location-section { grid-template-columns: 1fr; padding: 5rem 2rem; gap: 3rem; }
  .map-embed { height: 300px; }

  .contact-section { grid-template-columns: 1fr; padding: 5rem 2rem; gap: 3rem; }

  .payment-strip { flex-direction: column; gap: 1.5rem; text-align: center; }
  .payment-methods { justify-content: center; }

  footer { flex-direction: column; gap: 2rem; text-align: center; padding: 3rem 2rem; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 1.2rem; }
}

/* ── RESPONSIVE MOBILE ── */
@media (max-width: 540px) {
  /* Base */
  body { font-size: 16px; }

  /* Nav — hamburger simple */
  nav {
    padding: 1rem 1.4rem;
    background: rgba(245, 240, 232, 0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--beige-dark);
  }
  .nav-logo { font-size: 0.85rem; letter-spacing: 0.05em; }

  /* Hero */
  .hero { display: flex; flex-direction: column; min-height: auto; }
  .hero-left {
    padding: 6rem 1.4rem 2.5rem;
    order: 1;
  }
  .hero-title { font-size: clamp(2.8rem, 12vw, 4rem); margin-bottom: 1.2rem; }
  .hero-sub { font-size: 1rem; margin-bottom: 2rem; max-width: 100%; }
  .hero-actions { flex-direction: column; gap: 0.8rem; align-items: stretch; }
  .btn-primary, .btn-ghost { text-align: center; padding: 0.9rem 1.4rem; }
  .hero-right { order: 2; height: 60vw; min-height: 220px; }
  .hero-badge { width: 100px; height: 100px; bottom: 1.2rem; left: 1.2rem; font-size: 0.55rem; }
  .hero-badge-year { font-size: 1.1rem; }
  .hero-scroll-hint { display: none; }

  /* Marquee */
  .marquee-item { padding: 0 1.5rem; font-size: 0.6rem; }

  /* About */
  .about { display: flex; flex-direction: column; min-height: auto; }
  .about-img { height: 56vw; min-height: 200px; order: 1; }
  .about-img-label { font-size: 0.52rem; padding: 0.7rem 1rem; }
  .about-content { padding: 2.8rem 1.4rem; order: 2; }
  .about-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .about-text { font-size: 1rem; }
  .about-stats { gap: 1.5rem; flex-wrap: wrap; }
  .stat-num { font-size: 2rem; }

  /* Menu */
  .menu-section { padding: 3.5rem 1.4rem; }
  .menu-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; margin-bottom: 2.5rem; }
  .menu-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .menu-header > div:last-child {
    display: flex !important;
    flex-direction: column;
    gap: 0.7rem;
    width: 100%;
  }
  .menu-header .btn-primary,
  .menu-header .btn-ghost { width: 100%; text-align: center; justify-content: center; }
  .pdf-btn { justify-content: center; width: 100%; }
  .menu-grid { grid-template-columns: 1fr; gap: 3px; }
  .menu-card-body { padding: 1.2rem 1.4rem; }
  .menu-card-name { font-size: 1.3rem; }

  /* Commandes perso bannière */
  .custom-order-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.4rem;
    gap: 1.2rem;
  }
  .custom-order-icon { font-size: 1.6rem; }
  .custom-order-title { font-size: 1.2rem; }
  .custom-order-desc { font-size: 0.9rem; }
  .custom-order-banner .btn-primary { width: 100%; text-align: center; }

  /* Horaires */
  .hours-section { display: flex; flex-direction: column; min-height: auto; }
  .hours-img { order: 1; height: 45vw; min-height: 180px; }
  .hours-content { order: 2; padding: 2.8rem 1.4rem; }
  .hours-title { font-size: 2rem; margin-bottom: 1.8rem; }
  .hours-table td { font-size: 1rem; padding: 0.75rem 0; }
  .hours-note { font-size: 0.88rem; padding: 1rem; }

  /* Location */
  .location-section { display: flex; flex-direction: column; padding: 3.5rem 1.4rem; gap: 2rem; }
  .location-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .location-text { font-size: 1rem; margin-bottom: 1.5rem; }
  .map-embed { height: 250px; }

  /* Paiement */
  .payment-strip { padding: 2rem 1.4rem; flex-direction: column; gap: 1.2rem; text-align: center; }
  .payment-methods { justify-content: center; gap: 0.7rem; }
  .payment-chip { font-size: 0.6rem; padding: 0.45rem 0.9rem; }

  /* Contact */
  .contact-section { display: flex; flex-direction: column; padding: 3.5rem 1.4rem; gap: 2.5rem; }
  .contact-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .contact-text { font-size: 1rem; margin-bottom: 1.5rem; }
  .contact-mailto-btn { width: 100%; justify-content: center; padding: 1rem; font-size: 0.68rem; }
  .contact-card { padding: 1.2rem 1.4rem; }

  /* Footer */
  footer { flex-direction: column; gap: 1.8rem; text-align: center; padding: 2.5rem 1.4rem; }
  .footer-logo { font-size: 1.1rem; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 1rem; }
  .footer-copy { font-size: 0.55rem; }
}
