:root {
  --bg: #0c0810;
  --bg-soft: #150d16;
  --card: #1b101b;
  --card-2: #241421;
  --gold: #e7bd6a;
  --gold-2: #f4d78d;
  --text: #fff8eb;
  --muted: #d9c6ab;
  --line: rgba(231, 189, 106, .28);
  --shadow: 0 24px 80px rgba(0, 0, 0, .42);
  --radius: 28px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(128, 54, 26, .34), transparent 36rem),
    radial-gradient(circle at top right, rgba(91, 23, 59, .32), transparent 34rem),
    linear-gradient(180deg, #070509 0%, var(--bg) 52%, #070509 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold-2); }
img { max-width: 100%; display: block; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  padding: .7rem 1rem;
  border-radius: 999px;
  background: var(--gold);
  color: #170d15;
  z-index: 30;
}
.skip-link:focus { top: 1rem; }

.hero {
  position: relative;
  min-height: clamp(360px, 56vw, 720px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #120b11;
}

.hero__image {
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 56vw, 720px);
  object-fit: cover;
  object-position: center top;
}

.hero__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 5, 8, .10) 0%, rgba(8, 5, 8, 0) 42%, rgba(8, 5, 8, .16) 100%),
    linear-gradient(90deg, rgba(8, 5, 8, .10), transparent 34%, rgba(8, 5, 8, .10));
}

.hero__phone {
  position: absolute;
  top: clamp(10px, 1.65vw, 22px);
  left: clamp(18px, 4vw, 50px);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .28rem .62rem;
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(28, 17, 18, .92);
  border: 1px solid rgba(231, 189, 106, .15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .22);
  font-size: clamp(.72rem, 1.2vw, .95rem);
  font-weight: 700;
  line-height: 1;
}

.hero__phone a { color: var(--gold-2); }

.hero__nav {
  position: absolute;
  top: clamp(8px, 1vw, 12px);
  right: clamp(14px, 3.4vw, 52px);
  z-index: 5;
  display: flex;
  gap: clamp(.45rem, 1vw, .9rem);
}

.top-btn,
.btn,
.call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .78rem 1.1rem;
  border: 1px solid rgba(231, 189, 106, .62);
  border-radius: 999px;
  color: var(--text);
  background: rgba(39, 17, 43, .94);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .24);
  font-weight: 800;
  letter-spacing: .01em;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.top-btn { min-height: clamp(36px, 3.9vw, 46px); padding: .6rem clamp(.8rem, 1.7vw, 1.25rem); font-size: clamp(.7rem, 1.05vw, .92rem); }

.btn:hover,
.top-btn:hover,
.call-btn:hover {
  transform: translateY(-2px);
  border-color: var(--gold-2);
  background: rgba(64, 24, 60, .98);
  color: var(--gold-2);
}

.btn--gold,
.call-btn {
  color: #190e13;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  border-color: transparent;
}

.btn--gold:hover,
.call-btn:hover {
  color: #10080c;
  background: linear-gradient(135deg, #f7d47c, #fff0bc);
}

.section,
.reserve,
footer {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.section { padding: clamp(3.2rem, 7vw, 6.5rem) 0; }

.section__heading {
  max-width: 720px;
  margin-bottom: clamp(1.7rem, 4vw, 3rem);
}

.section__heading--center { text-align: center; margin-left: auto; margin-right: auto; }

.eyebrow {
  margin: 0 0 .45rem;
  color: var(--gold);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 900;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: #fff3d7;
  line-height: 1.08;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(2.2rem, 6vw, 5rem); margin-bottom: .9rem; }
h2 { font-size: clamp(2rem, 4vw, 3.8rem); margin-bottom: 1rem; }
h3 { font-size: 1.45rem; margin-bottom: .45rem; }
p { color: var(--muted); }

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.card,
.map-card,
.specialty-card,
.reserve {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02)),
    linear-gradient(180deg, var(--card), var(--card-2));
  box-shadow: var(--shadow);
}

.card { padding: clamp(1.3rem, 3vw, 2rem); }
.card h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.card a { color: var(--gold-2); font-weight: 750; }

.hours { margin: 0; }
.hours div {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  padding: .82rem 0;
  border-bottom: 1px solid rgba(231, 189, 106, .13);
}
.hours div:last-child { border-bottom: 0; }
.hours dt { color: #fff3d7; font-weight: 850; }
.hours dd { margin: 0; color: var(--muted); }
.place-name { color: #fff3d7; font-weight: 900; font-size: 1.18rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }

.map-card {
  position: relative;
  min-height: 260px;
  grid-column: 1 / -1;
  overflow: hidden;
  background:
    linear-gradient(rgba(9, 6, 11, .52), rgba(9, 6, 11, .74)),
    url("https://la-gondole.fr/images/facade-restaurant.jpg") center 45% / cover;
}

.map-card__inner {
  position: absolute;
  left: clamp(1.2rem, 3vw, 2rem);
  bottom: clamp(1.2rem, 3vw, 2rem);
  display: grid;
  gap: .25rem;
  max-width: 420px;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(14, 9, 14, .78);
  border: 1px solid rgba(231, 189, 106, .28);
  backdrop-filter: blur(8px);
}
.map-card span { color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; font-weight: 900; }
.map-card strong { font-size: clamp(1.2rem, 2vw, 1.7rem); }
.map-card a { color: var(--gold-2); font-weight: 850; }

.split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.split__media {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
  background: var(--card);
}
.split__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.split__content p { font-size: clamp(1.03rem, 1.4vw, 1.2rem); max-width: 620px; }
.split__content .btn { margin-top: .8rem; }

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.specialty-card { overflow: hidden; }
.specialty-card img { width: 100%; aspect-ratio: 1 / 1.05; object-fit: cover; }
.specialty-card div { padding: 1.3rem; }
.specialty-card p { margin-bottom: 0; }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery figure {
  position: relative;
  min-height: 310px;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.gallery figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .78));
  pointer-events: none;
}

.gallery img { width: 100%; height: 100%; min-height: 310px; object-fit: cover; }
.gallery figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: #fff2cf;
  font-weight: 900;
  font-size: 1.05rem;
}
.gallery__wide { grid-column: span 2; }

.reserve {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: clamp(1rem, 2vw, 2rem);
  margin-bottom: clamp(3rem, 7vw, 6rem);
  padding: clamp(1.5rem, 4vw, 2.4rem);
}
.reserve p { max-width: 640px; margin-bottom: 0; }
.reserve h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
.call-btn { white-space: nowrap; padding-inline: 1.6rem; }

footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0 2.4rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
footer strong { color: #fff3d7; }
footer p { margin: .25rem 0 0; }
footer a { color: var(--gold-2); font-weight: 750; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .7rem 1rem; }

@media (max-width: 900px) {
  .info-grid,
  .split,
  .specialty-grid,
  .gallery { grid-template-columns: 1fr; }
  .gallery__wide { grid-column: auto; }
  .reserve,
  footer { flex-direction: column; align-items: flex-start; }
  .footer-links { justify-content: flex-start; }
  .split__media { transform: none; }
  .hero__image,
  .hero { min-height: 450px; }
  .hero__image { object-position: center top; }
}

@media (max-width: 560px) {
  .section,
  .reserve,
  footer { width: min(100% - 1rem, 1180px); }
  .hero,
  .hero__image { min-height: 420px; }
  .hero__image { object-position: 50% top; }
  .hero__phone {
    left: .7rem;
    top: .62rem;
    font-size: .69rem;
    padding: .36rem .48rem;
  }
  .hero__nav {
    top: 2.6rem;
    left: .7rem;
    right: auto;
    gap: .45rem;
  }
  .top-btn { min-height: 34px; padding: .45rem .74rem; font-size: .68rem; }
  .hours div { grid-template-columns: 1fr; gap: .15rem; }
  .card, .reserve { border-radius: 22px; }
  .gallery figure, .gallery img { min-height: 260px; }
  .call-btn { width: 100%; }
}


/* =========================================================
   Corrections lisibilité / alignement — nouveau numéro
   - cache les anciens boutons intégrés dans l'image du haut
   - remet des boutons propres et lisibles par-dessus
   - renforce le contraste du bouton jaune
   ========================================================= */
.hero {
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: clamp(104px, 9.5vw, 142px);
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(14, 8, 15, .99) 0%,
      rgba(14, 8, 15, .99) 66%,
      rgba(14, 8, 15, .72) 82%,
      rgba(14, 8, 15, 0) 100%);
}

.hero__veil {
  z-index: 1;
}

/* Petit logo texte du haut retiré à la demande. */

.hero__phone {
  top: clamp(14px, 1.5vw, 22px);
  left: max(16px, calc((100vw - 1180px) / 2 + 16px));
  z-index: 6;
  gap: .35rem;
  min-height: 46px;
  padding: .52rem 1rem;
  border: 1.5px solid rgba(244, 215, 141, .62);
  color: #ffe8a7;
  background: rgba(31, 13, 32, .96);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .42);
  font-size: clamp(.78rem, 1.05vw, 1rem);
  line-height: 1.15;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

.hero__phone a {
  color: #fff0bd;
  font-weight: 900;
}

.hero__nav {
  top: clamp(14px, 1.5vw, 22px);
  right: max(16px, calc((100vw - 1180px) / 2 + 16px));
  z-index: 6;
  gap: .75rem;
  align-items: center;
}

.top-btn {
  min-width: 132px;
  min-height: 46px;
  padding: .62rem 1.15rem;
  border: 1.5px solid rgba(244, 215, 141, .72);
  color: #fff1c4;
  background: rgba(42, 16, 46, .96);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .42);
  font-size: clamp(.82rem, .95vw, .98rem);
  line-height: 1;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

.btn-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
  align-items: stretch;
}

.btn-row .btn {
  width: 100%;
  min-height: 58px;
  padding: .9rem 1.05rem;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.1;
  text-align: center;
}

.btn--gold,
.call-btn {
  color: #120914 !important;
  background: linear-gradient(135deg, #f5c75c 0%, #ffe59a 52%, #f7ce67 100%);
  border: 1px solid rgba(255, 239, 177, .78);
  text-shadow: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .42),
    0 15px 34px rgba(0, 0, 0, .32);
}

.btn--gold:hover,
.call-btn:hover {
  color: #10080c !important;
  background: linear-gradient(135deg, #ffdc7b 0%, #fff0bd 52%, #f9d36e 100%);
}

.btn:not(.btn--gold) {
  color: #fff1c4;
}

@media (max-width: 920px) {
  .hero::before {
    height: 128px;
  }

  .hero__phone {
    top: 16px;
    left: 1rem;
    right: 1rem;
    width: fit-content;
    max-width: calc(100% - 2rem);
    margin: 0 auto;
    justify-content: center;
    font-size: .86rem;
  }

  .hero__nav {
    top: 78px;
    left: 1rem;
    right: 1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
  }

  .top-btn {
    min-width: 0;
    width: 100%;
    min-height: 40px;
    padding: .55rem .65rem;
    font-size: .82rem;
  }
}

@media (max-width: 560px) {
  .hero,
  .hero__image {
    min-height: 430px;
  }

  .hero__image {
    object-position: 50% top;
  }

  .hero__phone {
    left: .75rem;
    right: .75rem;
    max-width: calc(100% - 1.5rem);
    padding: .46rem .65rem;
    font-size: .78rem;
  }

  .hero__nav {
    left: .75rem;
    right: .75rem;
  }

  .btn-row {
    grid-template-columns: 1fr;
  }

  .btn-row .btn {
    min-height: 56px;
  }
}
