:root {
  --cream: #f6f0e6;
  --charcoal: #1f1f1f;
  --graphite: #353535;
  --red: #b12424;
  --white: #ffffff;
  --border: #d9d1c5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.5;
}

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(53, 53, 53, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  width: 220px;
  height: 74px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  padding: 0;
  object-fit: cover;
  object-position: center 42.5%;
}

.main-nav {
  display: flex;
  gap: 2.7rem;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
}

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

.btn {
  display: inline-block;
  padding: 0.72rem 1.1rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: #8f1c1c;
}

.btn-secondary {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 72vh;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: relative;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.67) 0%, rgba(0, 0, 0, 0.2) 100%);
  min-height: inherit;
  display: flex;
  align-items: center;
}

.hero-content {
  color: var(--white);
  max-width: 700px;
  padding-block: 4rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  margin: 0 0 0.4rem;
  color: var(--red);
  font-weight: 600;
}

.hero .eyebrow {
  color: #f3cbc9;
}

.section-title-compact {
  font-size: 1.10rem;
  margin-bottom: 0.2rem;
}

.section-title-compact + p {
  font-size: 0.98rem;
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.hero-text {
  font-size: 1.08rem;
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.section {
  padding: 4.2rem 0;
  scroll-margin-top: 82px;
}

.section-cream {
  background: var(--cream);
}

.section-dark {
  background: var(--graphite);
  color: var(--white);
}

.two-col,
.reservation-wrap,
.contact-wrap {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1.15fr 0.85fr;
}

.highlight-card,
.menu-grid article,
.zenchef-box,
.info-grid article,
.contact-form {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fffefb 0%, #fdf9f3 100%);
  border: 1px solid #e5ddd0;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(23, 19, 14, 0.08), 0 2px 6px rgba(23, 19, 14, 0.06);
}

.highlight-card,
.menu-grid article,
.info-grid article,
.contact-form {
  padding: 1.15rem 1.15rem 1.05rem;
}

.highlight-card {
  border-left: 5px solid var(--red);
}

.highlight-card::before,
.menu-grid article::before,
.info-grid article::before,
.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

.section-dark .highlight-card {
  color: var(--charcoal);
}

.highlight-card ul,
.practical-list,
#horaires-list {
  margin: 0;
  padding-left: 1rem;
}

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

.menu-grid article {
  color: #111111;
}

.menu-grid article h3,
.menu-grid article li,
.menu-grid article li span {
  color: #111111;
}

.menu-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-grid li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  border-bottom: 1px dashed #dbcdbb;
  padding: 0.55rem 0;
}

.small-note {
  font-size: 0.92rem;
  opacity: 0.85;
}

.menu-download-btn {
  margin-top: 1rem;
}

.zenchef-box {
  height: 620px;
}

#zenchef-frame {
  width: 100%;
  height: 620px;
  border: 0;
  display: block;
}

.info-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-grid article:first-child {
  text-align: left;
  padding-top: 0.7rem;
  padding-bottom: 0.8rem;
}

.info-grid article h3 {
  display: inline-block;
  margin: 0 0 0.95rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: #eee5dc;
  color: #8d2d2d;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
}

.info-grid article p {
  margin: 0 0 0.38rem;
}

.info-grid article:first-child .address-logo,
.info-grid article:first-child .address-line {
  text-align: center;
}

.address-line {
  margin: 0 0 0.38rem;
  font-size: 0.98rem;
  line-height: 1.55;
}

.address-logo + .address-line {
  margin-top: 1rem;
}

.address-phone {
  display: inline-block;
  color: #8d2d2d;
  text-decoration: none;
  border-bottom: 1px solid #d4b4b4;
  font-size: 0.98rem;
  line-height: 1.55;
}

.address-phone:hover {
  border-bottom-color: #8d2d2d;
}

.address-logo-frame {
  width: 350px;
  max-width: 100%;
  height: 112px;
  margin: 0.1rem auto 0.45rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.address-logo {
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: center 42%;
}


#horaires-list,
.practical-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

#horaires-list li {
  padding: 0.36rem 0;
  border-bottom: 1px solid #e9e0d4;
}

#horaires-list li:last-child {
  border-bottom: 0;
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  white-space: nowrap;
}

.hours-day {
  font-weight: 600;
  color: #353535;
  font-size: 0.9rem;
}

.hours-time {
  text-align: right;
  font-weight: 600;
  color: #232323;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
}

.practical-list li {
  position: relative;
  padding-left: 1.2rem;
  padding-right: 0.1rem;
  margin-bottom: 1.35rem;
  line-height: 1.72;
  width: 100%;
  text-wrap: pretty;
  text-align: justify;
  text-justify: inter-word;
}

.practical-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b12424;
}

.practical-list li:last-child {
  margin-bottom: 0;
}

.contact-form {
  display: grid;
  gap: 0.55rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid #c5b8a7;
  border-radius: 4px;
  padding: 0.66rem 0.72rem;
  font: inherit;
  background: #fff;
}

.site-footer {
  background: #121212;
  color: #ddd;
  padding: 1rem 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-footer a {
  color: #f1d1d1;
}

@media (max-width: 940px) {
  .menu-grid,
  .info-grid,
  .two-col,
  .reservation-wrap,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .reservation-wrap > div:first-child {
    display: contents;
  }

  .reservation-wrap > div:first-child > .eyebrow,
  .reservation-wrap > div:first-child > h2,
  .reservation-wrap > div:first-child > p,
  .reservation-wrap > div:first-child > .small-note {
    display: block;
    order: initial;
  }

  .reservation-fallback-link {
    display: block;
    margin-top: 1rem;
  }

  .zenchef-box {
    order: 2;
  }

  .reservation-fallback-link {
    order: 3;
  }

  .main-nav {
    display: none;
  }

  .nav-cta {
    margin-left: auto;
  }
}
