:root {
  --blue: #063a74;
  --blue-dark: #002f63;
  --blue-deep: #002b5c;
  --gold: #b9852d;
  --cream: #faf7f1;
  --white: #ffffff;
  --black: #151515;
  --text: #222222;
  --border: rgba(6, 58, 116, 0.16);
  --shadow: 0 14px 34px rgba(0, 42, 92, 0.12);

  --title: "Cormorant Garamond", serif;
  --body: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { 
  scroll-behavior: smooth; 
}

body {
  font-family: var(--body);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.container {
  width: min(1190px, calc(100% - 72px));
  margin: 0 auto;
}

/* HEADER */

.header {
  height: 78px;
  background: #fff;
  border-bottom: 1px solid rgba(6, 58, 116, 0.12);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  width: min(1280px, calc(100% - 70px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 38px;
}

.logo {
  width: 220px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--blue-dark);
  flex-shrink: 0;
}

.logo-icon {
  color: var(--blue);
  font-size: 36px;
  line-height: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
  text-align: center;
}

.logo-text strong {
  font-family: var(--title);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.9px;
}

.logo-text small {
  font-family: var(--title);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 7px;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 31px;
}

.nav a {
  font-size: 14px;
  font-weight: 700;
  padding: 31px 0 27px;
  position: relative;
}

.nav a::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--blue);
  position: absolute;
  left: 0;
  bottom: 22px;
  transition: 0.25s;
}

.nav a.active::after,
.nav a:hover::after {
  width: 100%;
}

.call-btn {
  height: 48px;
  min-width: 158px;
  border-radius: 6px;
  background: var(--blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 8px 22px rgba(0, 47, 99, 0.25);
}

.burger {
  display: none;
}

/* HERO */

.hero {
  height: 505px;
  position: relative;
  background:
    linear-gradient(
      90deg,
      rgba(250, 247, 241, 0.97) 0%,
      rgba(250, 247, 241, 0.86) 31%,
      rgba(250, 247, 241, 0.38) 54%,
      rgba(250, 247, 241, 0.05) 100%
    ),
    url("../assets/images/hero/hero-home.jpg") center center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 76px;
  background: linear-gradient(to top, var(--cream), rgba(250, 247, 241, 0));
}

.hero-container {
  width: min(1280px, calc(100% - 70px));
  height: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-content {
  width: 560px;
  padding-top: 56px;
}

.hero h1 {
  font-family: var(--title);
  font-size: 75px;
  line-height: 0.95;
  color: var(--blue-dark);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

.hero p {
  width: 475px;
  font-size: 17px;
  line-height: 1.58;
  font-weight: 500;
  margin-bottom: 29px;
}

.hero-buttons {
  display: flex;
  gap: 23px;
  margin-bottom: 28px;
}

.btn {
  height: 48px;
  padding: 0 29px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 9px 20px rgba(0, 47, 99, 0.2);
}

.btn.white {
  background: rgba(255, 255, 255, 0.95);
  color: var(--blue);
  border-color: rgba(6, 58, 116, 0.24);
}

.btn.outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn.transparent {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.55);
}

.hero-infos {
  width: 650px;
  height: 65px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(6, 58, 116, 0.12);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  border-right: 1px solid rgba(6, 58, 116, 0.13);
}

.info-item:last-child {
  border-right: 0;
}

.info-item span {
  font-size: 29px;
  color: var(--blue);
}

.info-item p {
  width: auto;
  margin: 0;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 700;
}

/* TITRES */

.section-heading.center {
  text-align: center;
}

.section-heading h2 {
  font-family: var(--title);
  color: var(--blue-dark);
  font-size: 39px;
  line-height: 1.05;
  font-weight: 700;
}

.ornament {
  width: 62px;
  height: 2px;
  background: var(--gold);
  margin: 13px auto 0;
  position: relative;
}

.ornament::before,
.ornament::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--cream);
}

.ornament::before {
  left: 20px;
}

.ornament::after {
  right: 20px;
}

.small-line {
  width: 58px;
  height: 2px;
  background: var(--gold);
  margin-top: 17px;
}

.white-title h2 {
  color: white;
}

/* SIGNATURE */

.signature {
  padding: 27px 0 22px;
}

.signature-grid {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.dish-card {
  background: white;
  border: 1px solid rgba(6, 58, 116, 0.13);
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 9px 25px rgba(0, 43, 92, 0.06);
}

.dish-card img {
  height: 118px;
}

.dish-body {
  min-height: 116px;
  padding: 13px 12px 15px;
  text-align: center;
}

.dish-body h3 {
  font-family: var(--title);
  color: var(--blue-dark);
  font-size: 24px;
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 11px;
}

.dish-body strong {
  color: var(--blue);
  font-size: 15px;
  font-weight: 800;
}

/* STORY */

.story {
  padding: 0 0 20px;
}

.story-container {
  display: grid;
  grid-template-columns: 0.82fr 1.48fr;
  gap: 30px;
  align-items: stretch;
}

.story-text {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  padding: 28px 30px;
}

.story-text p {
  width: 410px;
  margin-top: 19px;
  margin-bottom: 20px;
  font-size: 15.5px;
  line-height: 1.65;
  font-weight: 500;
}

.story-images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.story-images img {
  height: 232px;
  border-radius: 7px;
}

/* SERVICES */

.services {
  background:
    linear-gradient(rgba(0, 55, 111, 0.96), rgba(0, 55, 111, 0.96)),
    url("../assets/images/patterns/blue-pattern.jpg") center / cover no-repeat;
  padding: 24px 0 39px;
  color: white;
}

.services-grid {
  margin-top: 27px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-item {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 21px;
  padding: 6px 47px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.service-item:last-child {
  border-right: 0;
}

.service-icon {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
}

.service-item h3 {
  font-family: var(--title);
  font-size: 27px;
  color: white;
  margin-bottom: 8px;
}

.service-item p {
  width: 210px;
  font-size: 14.5px;
  line-height: 1.45;
  color: rgba(255,255,255,0.9);
}

.service-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 30px;
}

.service-buttons .btn {
  width: 270px;
}

/* LOCATION */

.location {
  padding: 27px 0 29px;
}

.location-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.05fr 1.55fr;
  gap: 22px;
  align-items: start;
}

.location-info h2 {
  font-family: var(--title);
  font-size: 30px;
  color: var(--blue-dark);
  margin-bottom: 18px;
}

.location-info h2::after {
  content: "";
  display: block;
  width: 57px;
  height: 2px;
  background: var(--gold);
  margin-top: 11px;
}

.location-info ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.location-info li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}

.location-info li span {
  color: var(--blue);
  font-size: 19px;
}

.map img {
  height: 158px;
  border-radius: 7px;
  border: 1px solid rgba(6, 58, 116, 0.12);
}

.location-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.location-gallery img {
  height: 158px;
  border-radius: 7px;
}

/* FOOTER */

.footer {
  background: var(--blue-dark);
  color: white;
  height: 72px;
}

.footer-container {
  width: min(1280px, calc(100% - 70px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  font-family: var(--title);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  gap: 38px;
}

.footer-links a,
.footer p {
  font-size: 13px;
  color: rgba(255,255,255,0.86);
}

.footer p {
  text-align: right;
}
/* ========================================================= */
/* PAGE CARTE */
/* ========================================================= */

.menu-hero {
  height: 315px;
  position: relative;
  background:
    linear-gradient(
      90deg,
      rgba(250, 247, 241, 0.98) 0%,
      rgba(250, 247, 241, 0.92) 38%,
      rgba(250, 247, 241, 0.45) 64%,
      rgba(250, 247, 241, 0.05) 100%
    ),
    url("../assets/images/hero/hero-carte.jpg") center right / cover no-repeat;
  overflow: hidden;
}

.menu-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 70px;
  background: linear-gradient(to top, var(--cream), rgba(250, 247, 241, 0));
}

.menu-hero-container {
  width: min(1280px, calc(100% - 70px));
  height: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.menu-hero-text {
  padding-top: 50px;
  max-width: 600px;
}

.menu-hero-text h1 {
  font-family: var(--title);
  color: var(--blue-dark);
  font-size: 64px;
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.menu-hero-text h1 span {
  font-family: "Great Vibes", cursive;
  color: var(--blue);
  font-size: 80px;
  font-weight: 400;
  letter-spacing: 1px;
}

.gold-separator {
  width: 350px;
  height: 1px;
  background: var(--gold);
  margin: 18px 0 18px;
  position: relative;
}

.gold-separator::after {
  content: "✥";
  position: absolute;
  left: 50%;
  top: -11px;
  transform: translateX(-50%);
  color: var(--gold);
  background: var(--cream);
  padding: 0 10px;
  font-size: 14px;
}

.menu-hero-text p {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
}

.menu-page {
  margin-top: -30px;
  padding-bottom: 40px;
  position: relative;
  z-index: 5;
}

.menu-wrapper {
  width: min(1180px, calc(100% - 70px));
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(6, 58, 116, 0.11);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 42, 92, 0.12);
  padding: 18px 24px 32px;
}

.menu-tabs {
  display: grid;
  grid-template-columns: 1.35fr repeat(8, 1fr);
  border: 1px solid rgba(6, 58, 116, 0.15);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 24px;
}

.menu-tabs a {
  height: 42px;
  display: grid;
  place-items: center;
  background: white;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  border-right: 1px solid rgba(6, 58, 116, 0.12);
}

.menu-tabs a:last-child {
  border-right: none;
}

.menu-tabs a.active,
.menu-tabs a:hover {
  background: var(--blue);
  color: white;
}

.menu-category {
  margin-bottom: 28px;
}

.menu-category-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.menu-category-head h2 {
  font-family: var(--title);
  color: var(--blue-dark);
  font-size: 31px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-category-head h2::after {
  content: "";
  height: 1px;
  background: rgba(185, 133, 45, 0.35);
  flex: 1;
  margin-left: 14px;
}

.menu-category-head h2 span {
  color: var(--blue);
  font-size: 20px;
}

.menu-category-head a {
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
}

.menu-grid {
  display: grid;
  gap: 10px;
}

.entree-grid {
  grid-template-columns: repeat(8, 1fr);
}

.special-grid {
  grid-template-columns: repeat(6, 1fr);
}

.menu-card {
  background: white;
  border: 1px solid rgba(6, 58, 116, 0.13);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 42, 92, 0.05);
}

.menu-card img {
  height: 96px;
}

.menu-card div {
  padding: 10px 10px 12px;
  text-align: center;
}

.menu-card h3 {
  font-family: var(--title);
  color: var(--blue-dark);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 6px;
}

.menu-card p {
  font-size: 11px;
  line-height: 1.35;
  min-height: 46px;
  color: #333;
}

.menu-card strong {
  display: block;
  color: #111;
  font-size: 14px;
  margin-top: 8px;
}

.menu-card.large img {
  height: 118px;
}

.menu-card.large h3 {
  font-size: 21px;
}

.menu-card.large p {
  font-size: 12px;
  min-height: 48px;
}

.menu-bottom-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 1.05fr;
  gap: 24px;
}

.menu-category.compact {
  margin-bottom: 0;
}

.menu-category.compact .menu-category-head h2 {
  font-size: 26px;
}

.small-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.small-menu-card {
  background: white;
  border: 1px solid rgba(6, 58, 116, 0.13);
  border-radius: 7px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0, 42, 92, 0.04);
}

.small-menu-card img {
  height: 82px;
}

.small-menu-card h3 {
  font-family: var(--title);
  color: var(--blue-dark);
  font-size: 18px;
  line-height: 1.05;
  margin: 8px 8px 4px;
}

.small-menu-card strong {
  display: block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 9px;
}

.small-menu-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: left;
  background: var(--blue);
  color: white;
}

.small-menu-card.featured img {
  height: 100%;
}

.small-menu-card.featured div {
  padding: 14px;
}

.small-menu-card.featured h3,
.small-menu-card.featured strong {
  color: white;
}

.small-menu-card.featured p {
  font-size: 12px;
  line-height: 1.35;
  margin: 6px 0;
  color: rgba(255,255,255,0.9);
}

.line-menu {
  display: grid;
  gap: 10px;
}

.line-dish {
  background: white;
  border: 1px solid rgba(6, 58, 116, 0.12);
  border-radius: 7px;
  display: grid;
  grid-template-columns: 86px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px;
}

.line-dish img {
  height: 58px;
  border-radius: 5px;
}

.line-dish h3 {
  color: var(--blue-dark);
  font-size: 15px;
  font-weight: 800;
}

.line-dish p {
  font-size: 12px;
  color: #555;
}

.line-dish strong {
  color: var(--blue);
  font-size: 14px;
  padding-right: 8px;
}

.note-card {
  background: rgba(185, 133, 45, 0.12);
  border-radius: 7px;
  padding: 12px;
  text-align: center;
  font-size: 12px;
  color: var(--blue-dark);
  font-weight: 700;
}

.grill-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.fish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.dessert-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 10px;
}

.dessert-list {
  background: white;
  border: 1px solid rgba(6, 58, 116, 0.12);
  border-radius: 7px;
  padding: 12px;
}

.dessert-list div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(6, 58, 116, 0.08);
  padding: 5px 0;
  font-size: 13px;
}

.dessert-list div:last-child {
  border-bottom: none;
}

.dessert-list strong {
  color: var(--blue);
}
/* ========================================================= */
/* PAGE SPECIALITES */
/* ========================================================= */

.special-hero {
  height: 315px;
  background:
    linear-gradient(
      90deg,
      rgba(250, 247, 241, 0.98) 0%,
      rgba(250, 247, 241, 0.93) 38%,
      rgba(250, 247, 241, 0.52) 63%,
      rgba(250, 247, 241, 0.05) 100%
    ),
    url("../assets/images/hero/hero-specialites.jpg") center right / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.special-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 70px;
  background: linear-gradient(to top, var(--cream), rgba(250, 247, 241, 0));
}

.special-hero-container {
  width: min(1280px, calc(100% - 70px));
  height: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.special-hero-text {
  max-width: 680px;
  padding-top: 65px;
}

.special-hero-text h1 {
  font-family: var(--title);
  color: var(--blue-dark);
  font-size: 58px;
  line-height: 1;
  font-weight: 700;
}

.special-hero-text h1 span {
  font-family: "Great Vibes", cursive;
  color: var(--gold);
  font-size: 62px;
  font-weight: 400;
  margin-left: 14px;
}

.special-hero-text p {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.6;
  margin-top: 18px;
  font-weight: 500;
}

/* TABS */

.special-tabs-section {
  margin-top: -26px;
  position: relative;
  z-index: 5;
}

.special-tabs {
  width: min(1120px, calc(100% - 70px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr repeat(5, 1fr);
  background: white;
  border: 1px solid rgba(6, 58, 116, 0.14);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 42, 92, 0.10);
}

.special-tabs a {
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 14px;
  border-right: 1px solid rgba(6, 58, 116, 0.12);
}

.special-tabs a:last-child {
  border-right: none;
}

.special-tabs a.active,
.special-tabs a:hover {
  background: var(--blue);
  color: white;
}

/* CARDS */

.specialites-page {
  padding: 32px 0 38px;
}

.specialites-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.special-card {
  min-height: 196px;
  background: white;
  border: 1px solid rgba(6, 58, 116, 0.13);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 42, 92, 0.07);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  transition: 0.25s ease;
}

.special-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 42, 92, 0.13);
}

.special-image img {
  height: 100%;
  min-height: 196px;
}

.special-content {
  padding: 22px 22px 20px;
}

.special-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.special-top h2 {
  font-family: var(--title);
  color: var(--blue-dark);
  font-size: 31px;
  line-height: 1;
}

.special-top strong {
  color: var(--blue);
  font-weight: 800;
  font-size: 16px;
  white-space: nowrap;
}

.special-content p {
  font-size: 14.5px;
  line-height: 1.55;
  color: #222;
  margin-bottom: 14px;
}

.special-content a {
  color: var(--blue);
  font-weight: 800;
  font-size: 14px;
}

/* VALUES */

.special-values {
  margin-top: 28px;
  background: rgba(235, 244, 252, 0.9);
  border: 1px solid rgba(6, 58, 116, 0.10);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.05fr;
  align-items: stretch;
}

.value-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: center;
  padding: 22px 26px;
  border-right: 1px solid rgba(6, 58, 116, 0.12);
}

.value-item span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 30px;
}

.value-item h3 {
  font-family: var(--title);
  color: var(--blue-dark);
  font-size: 24px;
  margin-bottom: 5px;
}

.value-item p {
  font-size: 13px;
  line-height: 1.45;
}

.value-cta {
  background: var(--blue);
  color: white;
  padding: 22px 28px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.value-cta p {
  font-family: var(--title);
  font-size: 26px;
  line-height: 1.1;
  margin-bottom: 14px;
}

.gold-btn {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}
/* ========================================================= */
/* PAGE LIVRAISON */
/* ========================================================= */

.delivery-hero {
  height: 315px;
  position: relative;
  background:
    linear-gradient(
      90deg,
      rgba(250, 247, 241, 0.98) 0%,
      rgba(250, 247, 241, 0.92) 38%,
      rgba(250, 247, 241, 0.46) 65%,
      rgba(250, 247, 241, 0.05) 100%
    ),
    url("../assets/images/hero/hero-livraison.jpg") center right / cover no-repeat;
  overflow: hidden;
}

.delivery-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 70px;
  background: linear-gradient(to top, var(--cream), rgba(250, 247, 241, 0));
}

.delivery-hero-container {
  width: min(1280px, calc(100% - 70px));
  height: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.delivery-hero-text {
  max-width: 640px;
  padding-top: 55px;
}

.delivery-hero-text h1 {
  font-family: var(--title);
  color: var(--blue-dark);
  font-size: 62px;
  line-height: 0.95;
  font-weight: 700;
}

.delivery-hero-text span {
  font-family: "Great Vibes", cursive;
  color: var(--gold);
  font-size: 38px;
  display: block;
  margin-bottom: 8px;
}

.delivery-hero-text p {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
}

/* PAGE */

.delivery-page {
  padding: 28px 0 38px;
}

.delivery-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 20px;
}

.delivery-card {
  min-height: 172px;
  background: white;
  border: 1px solid rgba(6, 58, 116, 0.13);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 82px 1fr 180px;
  align-items: stretch;
  box-shadow: 0 14px 34px rgba(0, 42, 92, 0.08);
}

.delivery-icon {
  display: grid;
  place-items: center;
  font-size: 38px;
  color: var(--blue);
}

.delivery-content {
  padding: 28px 12px 24px;
}

.delivery-content h2 {
  font-family: var(--title);
  color: var(--blue-dark);
  font-size: 31px;
  line-height: 1;
}

.tiny-gold-line {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin: 12px 0 18px;
}

.delivery-content p {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
}

.delivery-card img {
  height: 100%;
  min-height: 172px;
}

/* BUTTONS */

.delivery-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  width: min(850px, 100%);
  margin: 18px auto 24px;
}

.delivery-big-btn {
  height: 56px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 17px;
  box-shadow: 0 12px 25px rgba(0, 42, 92, 0.08);
}

.delivery-big-btn.call {
  background: var(--blue);
  color: white;
}

.delivery-big-btn.uber {
  background: #111;
  color: #58c767;
  font-size: 22px;
}

.delivery-big-btn.route {
  background: white;
  color: var(--blue);
  border: 1px solid rgba(6, 58, 116, 0.25);
}

/* DETAILS */

.delivery-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: white;
  border: 1px solid rgba(6, 58, 116, 0.12);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 28px;
}

.delivery-detail-item {
  display: grid;
  grid-template-columns: 68px 1fr 150px;
  gap: 16px;
  align-items: center;
  padding: 18px 18px;
  border-right: 1px solid rgba(6, 58, 116, 0.12);
}

.delivery-detail-item:last-child {
  border-right: none;
}

.delivery-detail-item span {
  color: var(--blue);
  font-size: 32px;
}

.delivery-detail-item h3 {
  font-family: var(--title);
  color: var(--blue-dark);
  font-size: 22px;
  line-height: 1.12;
}

.delivery-detail-item img {
  height: 82px;
  border-radius: 7px;
}

/* CONTACT */

.delivery-contact {
  display: grid;
  grid-template-columns: 0.8fr 1.05fr 1.35fr;
  gap: 22px;
  align-items: stretch;
}

.delivery-contact-info {
  background: rgba(255,255,255,0.55);
  padding: 16px 0;
}

.delivery-contact-info h2 {
  font-family: var(--title);
  color: var(--blue-dark);
  font-size: 31px;
  margin-bottom: 18px;
}

.delivery-contact-info h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  background: var(--gold);
  margin-top: 11px;
}

.delivery-contact-info ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.delivery-contact-info li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}

.delivery-contact-info li span {
  color: var(--blue);
  font-size: 19px;
}

.delivery-map img,
.delivery-gallery img {
  height: 165px;
  border-radius: 8px;
}

.delivery-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
/* ========================================================= */
/* PAGE GALERIE */
/* ========================================================= */

.gallery-hero {
  height: 315px;
  position: relative;
  background:
    linear-gradient(
      90deg,
      rgba(250, 247, 241, 0.98) 0%,
      rgba(250, 247, 241, 0.91) 38%,
      rgba(250, 247, 241, 0.48) 64%,
      rgba(250, 247, 241, 0.05) 100%
    ),
    url("../assets/images/hero/hero-galerie.jpg") center right / cover no-repeat;
  overflow: hidden;
}

.gallery-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 70px;
  background: linear-gradient(to top, var(--cream), rgba(250, 247, 241, 0));
}

.gallery-hero-container {
  width: min(1280px, calc(100% - 70px));
  height: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.gallery-hero-text {
  max-width: 640px;
  padding-top: 65px;
}

.gallery-hero-text h1 {
  font-family: var(--title);
  color: var(--blue-dark);
  font-size: 64px;
  line-height: 0.95;
  font-weight: 700;
}

.gallery-hero-text h1 span {
  font-family: "Great Vibes", cursive;
  color: var(--gold);
  font-size: 74px;
  font-weight: 400;
  margin-left: 12px;
}

.gallery-hero-text p {
  max-width: 540px;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
}

/* PAGE */

.gallery-page {
  padding: 28px 0 42px;
}

.gallery-tabs {
  width: min(900px, 100%);
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  background: white;
  border: 1px solid rgba(6, 58, 116, 0.14);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 42, 92, 0.08);
}

.gallery-tabs a {
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
  border-right: 1px solid rgba(6, 58, 116, 0.12);
}

.gallery-tabs a:last-child {
  border-right: none;
}

.gallery-tabs a.active,
.gallery-tabs a:hover {
  background: var(--blue);
  color: white;
}

.gallery-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 26px;
}

.gallery-intro h2 {
  font-family: var(--title);
  color: var(--blue-dark);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 12px;
}

.gallery-intro p {
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
}

/* GRID */

.gallery-grid-page {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 215px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  box-shadow: 0 14px 34px rgba(0, 42, 92, 0.09);
  background: var(--blue);
}

.gallery-item.big {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  transition: 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(0, 35, 75, 0.78),
      rgba(0, 35, 75, 0.18),
      rgba(0, 35, 75, 0.02)
    );
}

.gallery-item div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  color: white;
}

.gallery-item span {
  display: inline-block;
  color: #f2c56b;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.gallery-item h3 {
  font-family: var(--title);
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
}

/* CTA */

.gallery-cta {
  background:
    linear-gradient(rgba(0, 55, 111, 0.96), rgba(0, 55, 111, 0.96)),
    url("../assets/images/patterns/blue-pattern.jpg") center / cover no-repeat;
  color: white;
  padding: 38px 0;
}

.gallery-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}

.gallery-cta h2 {
  font-family: var(--title);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 10px;
}

.gallery-cta p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
}

.gallery-cta-buttons {
  display: flex;
  gap: 14px;
}
/* ========================================================= */
/* PAGE A PROPOS */
/* ========================================================= */

.about-hero {
  height: 315px;
  position: relative;
  background:
    linear-gradient(
      90deg,
      rgba(250, 247, 241, 0.98) 0%,
      rgba(250, 247, 241, 0.92) 38%,
      rgba(250, 247, 241, 0.48) 64%,
      rgba(250, 247, 241, 0.05) 100%
    ),
    url("../assets/images/hero/hero-home.jpg") center right / cover no-repeat;
  overflow: hidden;
}

.about-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 70px;
  background: linear-gradient(to top, var(--cream), rgba(250, 247, 241, 0));
}

.about-hero-container {
  width: min(1280px, calc(100% - 70px));
  height: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-hero-text {
  max-width: 720px;
  padding-top: 65px;
}

.about-hero-text h1 {
  font-family: var(--title);
  color: var(--blue-dark);
  font-size: 62px;
  line-height: 0.95;
  font-weight: 700;
}

.about-hero-text h1 span {
  font-family: "Great Vibes", cursive;
  color: var(--gold);
  font-size: 72px;
  font-weight: 400;
  margin-left: 10px;
}

.about-hero-text p {
  max-width: 590px;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
}

/* INTRO */

.about-intro {
  padding: 36px 0 34px;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.about-label {
  display: inline-block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.about-intro-text h2,
.about-story-text h2 {
  font-family: var(--title);
  color: var(--blue-dark);
  font-size: 46px;
  line-height: 1.03;
  margin-bottom: 20px;
}

.about-intro-text p,
.about-story-text p {
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
  margin-bottom: 16px;
}

.about-buttons {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.about-intro-images {
  position: relative;
  min-height: 430px;
}

.about-img-main {
  height: 390px;
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(0, 42, 92, 0.14);
}

.about-img-small {
  position: absolute;
  width: 240px;
  height: 180px;
  right: -10px;
  bottom: 0;
  border-radius: 12px;
  border: 8px solid var(--cream);
  box-shadow: 0 18px 40px rgba(0, 42, 92, 0.16);
}

/* VALUES */

.about-values-section {
  padding: 38px 0 46px;
  background:
    linear-gradient(rgba(0, 55, 111, 0.96), rgba(0, 55, 111, 0.96)),
    url("../assets/images/patterns/blue-pattern.jpg") center / cover no-repeat;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.about-value-card {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 12px;
  padding: 30px 26px;
  text-align: center;
  color: white;
}

.about-value-card span {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.45);
  display: grid;
  place-items: center;
  font-size: 34px;
  color: #f2c56b;
}

.about-value-card h3 {
  font-family: var(--title);
  font-size: 30px;
  margin-bottom: 10px;
}

.about-value-card p {
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  line-height: 1.6;
}

/* STORY */

.about-story {
  padding: 42px 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.about-story-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-story-gallery img {
  height: 220px;
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(0, 42, 92, 0.09);
}

.about-story-gallery img:first-child {
  grid-column: span 2;
  height: 260px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: white;
  border: 1px solid rgba(6, 58, 116, 0.12);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 26px;
}

.about-stats div {
  padding: 18px 14px;
  text-align: center;
  border-right: 1px solid rgba(6, 58, 116, 0.10);
}

.about-stats div:last-child {
  border-right: none;
}

.about-stats strong {
  display: block;
  color: var(--blue-dark);
  font-family: var(--title);
  font-size: 24px;
  line-height: 1;
  margin-bottom: 8px;
}

.about-stats span {
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
}

/* CTA */

.about-cta {
  background:
    linear-gradient(rgba(0, 55, 111, 0.96), rgba(0, 55, 111, 0.96)),
    url("../assets/images/patterns/blue-pattern.jpg") center / cover no-repeat;
  color: white;
  padding: 38px 0;
}

.about-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}

.about-cta h2 {
  font-family: var(--title);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 10px;
}

.about-cta p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
}

.about-cta-buttons {
  display: flex;
  gap: 14px;
}
/* ========================================================= */
/* PAGE RESERVATION */
/* ========================================================= */

.reservation-hero {
  height: 315px;
  position: relative;
  background:
    linear-gradient(
      90deg,
      rgba(250, 247, 241, 0.98) 0%,
      rgba(250, 247, 241, 0.92) 38%,
      rgba(250, 247, 241, 0.48) 64%,
      rgba(250, 247, 241, 0.05) 100%
    ),
    url("../assets/images/hero/hero-reservation.jpg") center right / cover no-repeat;
  overflow: hidden;
}

.reservation-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 70px;
  background: linear-gradient(to top, var(--cream), rgba(250, 247, 241, 0));
}

.reservation-hero-container {
  width: min(1280px, calc(100% - 70px));
  height: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.reservation-hero-text {
  max-width: 700px;
  padding-top: 65px;
}

.reservation-hero-text h1 {
  font-family: var(--title);
  color: var(--blue-dark);
  font-size: 62px;
  line-height: 0.95;
  font-weight: 700;
}

.reservation-hero-text h1 span {
  font-family: "Great Vibes", cursive;
  color: var(--gold);
  font-size: 72px;
  font-weight: 400;
  margin-left: 10px;
}

.reservation-hero-text p {
  max-width: 570px;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
}

/* PAGE */

.reservation-page {
  padding: 38px 0 42px;
}

.reservation-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: start;
}

.reservation-form-box {
  background: white;
  border: 1px solid rgba(6, 58, 116, 0.13);
  border-radius: 16px;
  padding: 34px;
  box-shadow: 0 18px 45px rgba(0, 42, 92, 0.10);
}

.reservation-label {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reservation-form-box h2 {
  font-family: var(--title);
  color: var(--blue-dark);
  font-size: 44px;
  line-height: 1;
  margin: 12px 0 14px;
}

.reservation-form-box > p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 660px;
}

/* FORM */

.reservation-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(6, 58, 116, 0.18);
  border-radius: 8px;
  background: #fbfaf7;
  padding: 14px 15px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: 0.25s ease;
}

.form-group input,
.form-group select {
  height: 52px;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(6, 58, 116, 0.08);
  background: white;
}

.reservation-submit {
  height: 56px;
  border: none;
  border-radius: 8px;
  background: var(--blue);
  color: white;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 14px 28px rgba(0, 42, 92, 0.18);
}

.reservation-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.form-note {
  font-size: 12px !important;
  color: #666;
  margin: -4px 0 0 !important;
}

/* SIDE */

.reservation-side {
  display: grid;
  gap: 20px;
}

.reservation-info-card {
  background:
    linear-gradient(rgba(0, 55, 111, 0.96), rgba(0, 55, 111, 0.96)),
    url("../assets/images/patterns/blue-pattern.jpg") center / cover no-repeat;
  color: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(0, 42, 92, 0.12);
}

.reservation-info-card h3 {
  font-family: var(--title);
  font-size: 34px;
  line-height: 1;
  margin-bottom: 24px;
}

.reservation-info-card ul {
  list-style: none;
  display: grid;
  gap: 18px;
}

.reservation-info-card li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.reservation-info-card li span {
  color: #f2c56b;
  font-size: 26px;
}

.reservation-info-card strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.reservation-info-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  line-height: 1.45;
}

.reservation-side-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 26px;
}

.reservation-side-buttons a {
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: white;
  color: var(--blue);
  font-weight: 800;
  font-size: 14px;
}

.reservation-side-buttons a:last-child {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.45);
}

.reservation-photo-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.reservation-photo-stack img {
  height: 210px;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(0, 42, 92, 0.08);
}

/* BOTTOM CTA */

.reservation-bottom {
  background:
    linear-gradient(rgba(0, 55, 111, 0.96), rgba(0, 55, 111, 0.96)),
    url("../assets/images/patterns/blue-pattern.jpg") center / cover no-repeat;
  color: white;
  padding: 38px 0;
}

.reservation-bottom-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.reservation-bottom h2 {
  font-family: var(--title);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 10px;
}

.reservation-bottom p {
  color: rgba(255,255,255,0.9);
}

.reservation-bottom-buttons {
  display: flex;
  gap: 14px;
}
/* ========================================================= */
/* PAGE CONTACT */
/* ========================================================= */

.contact-hero {
  height: 315px;
  position: relative;
  background:
    linear-gradient(
      90deg,
      rgba(250, 247, 241, 0.98) 0%,
      rgba(250, 247, 241, 0.92) 38%,
      rgba(250, 247, 241, 0.48) 64%,
      rgba(250, 247, 241, 0.05) 100%
    ),
    url("../assets/images/hero/hero-contact.jpg") center right / cover no-repeat;
  overflow: hidden;
}

.contact-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 70px;
  background: linear-gradient(to top, var(--cream), rgba(250, 247, 241, 0));
}

.contact-hero-container {
  width: min(1280px, calc(100% - 70px));
  height: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-hero-text {
  max-width: 700px;
  padding-top: 65px;
}

.contact-hero-text h1 {
  font-family: var(--title);
  color: var(--blue-dark);
  font-size: 62px;
  line-height: 0.95;
  font-weight: 700;
}

.contact-hero-text h1 span {
  font-family: "Great Vibes", cursive;
  color: var(--gold);
  font-size: 72px;
  font-weight: 400;
  margin-left: 10px;
}

.contact-hero-text p {
  max-width: 570px;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
}

/* PAGE CONTACT */

.contact-page {
  padding: 38px 0 32px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.contact-info-box,
.contact-form-box {
  background: white;
  border: 1px solid rgba(6, 58, 116, 0.13);
  border-radius: 16px;
  padding: 34px;
  box-shadow: 0 18px 45px rgba(0, 42, 92, 0.10);
}

.contact-label {
  display: inline-block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.contact-info-box h2,
.contact-form-box h2 {
  font-family: var(--title);
  color: var(--blue-dark);
  font-size: 44px;
  line-height: 1;
  margin-bottom: 16px;
}

.contact-info-box > p {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 24px;
}

.contact-info-list {
  display: grid;
  gap: 16px;
  margin-bottom: 26px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  background: #fbfaf7;
  border: 1px solid rgba(6, 58, 116, 0.10);
  border-radius: 10px;
  padding: 16px;
}

.contact-info-item span {
  color: var(--blue);
  font-size: 27px;
}

.contact-info-item strong {
  display: block;
  color: var(--blue-dark);
  font-size: 14px;
  margin-bottom: 5px;
}

.contact-info-item p {
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
}

.contact-buttons {
  display: flex;
  gap: 14px;
}

/* FORM CONTACT */

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-submit {
  height: 56px;
  border: none;
  border-radius: 8px;
  background: var(--blue);
  color: white;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 14px 28px rgba(0, 42, 92, 0.18);
}

.contact-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

/* MAP + PHOTOS */

.contact-location-section {
  padding: 0 0 42px;
}

.contact-location-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}

.contact-map-card {
  background: white;
  border: 1px solid rgba(6, 58, 116, 0.13);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 42, 92, 0.08);
}

.contact-map-card img {
  height: 280px;
}

.contact-map-card a {
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-weight: 800;
  background: white;
}

.contact-photo-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.contact-photo-card img {
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(0, 42, 92, 0.09);
}

.contact-photo-card img:first-child {
  grid-row: span 2;
}

/* CTA */

.contact-cta {
  background:
    linear-gradient(rgba(0, 55, 111, 0.96), rgba(0, 55, 111, 0.96)),
    url("../assets/images/patterns/blue-pattern.jpg") center / cover no-repeat;
  color: white;
  padding: 38px 0;
}

.contact-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.contact-cta h2 {
  font-family: var(--title);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 10px;
}

.contact-cta p {
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
}

.contact-cta-buttons {
  display: flex;
  gap: 14px;
}
/* ========================================================= */
/* CORRECTIONS GLOBALES PREMIUM */
/* ========================================================= */

/* ---------- HEADER / LOGO ---------- */

.logo {
  width: 210px;
  gap: 12px;
}

.logo-icon {
  font-size: 34px;
  color: var(--blue);
}

.logo-text {
  line-height: 0.9;
  text-align: left;
}

.logo-text strong {
  display: block;
  font-family: var(--title);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--blue-dark);
  line-height: 0.9;
}

.logo-text small {
  display: block;
  font-family: var(--title);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--blue-dark);
  margin-top: 6px;
}

.call-btn {
  min-width: 170px;
  height: 52px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0b4c96, #063a74);
  color: white;
  font-size: 15px;
  font-weight: 800;
  gap: 9px;
  box-shadow: 0 10px 24px rgba(0, 47, 99, 0.18);
  transition: 0.25s ease;
}

.call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 47, 99, 0.24);
}

/* ---------- HERO TEXTES PLUS ELEGANTS ---------- */

.hero h1,
.menu-hero-text h1,
.special-hero-text h1,
.delivery-hero-text h1,
.gallery-hero-text h1,
.about-hero-text h1,
.reservation-hero-text h1,
.contact-hero-text h1 {
  text-wrap: balance;
  letter-spacing: 0.2px;
}

.hero h1 {
  font-size: clamp(64px, 6.2vw, 104px);
  line-height: 0.94;
  max-width: 650px;
}

.hero p {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.65;
}

.menu-hero-text h1,
.special-hero-text h1,
.delivery-hero-text h1,
.gallery-hero-text h1,
.about-hero-text h1,
.reservation-hero-text h1,
.contact-hero-text h1 {
  font-size: clamp(54px, 5.1vw, 84px);
  line-height: 0.96;
}

.menu-hero-text p,
.special-hero-text p,
.delivery-hero-text p,
.gallery-hero-text p,
.about-hero-text p,
.reservation-hero-text p,
.contact-hero-text p {
  font-size: 17px;
  line-height: 1.65;
}

/* ---------- BACKGROUND HERO : IMAGE BIEN VISIBLE ---------- */

.hero,
.menu-hero,
.special-hero,
.delivery-hero,
.gallery-hero,
.about-hero,
.reservation-hero,
.contact-hero {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center right !important;
  position: relative;
  overflow: hidden;
}

/* overlays plus légers pour mieux voir la photo */
.hero {
  background-image:
    linear-gradient(
      90deg,
      rgba(250,247,241,0.94) 0%,
      rgba(250,247,241,0.82) 30%,
      rgba(250,247,241,0.40) 56%,
      rgba(250,247,241,0.08) 100%
    ),
    url("../assets/images/hero/hero-home.jpg") !important;
}

.menu-hero {
  background-image:
    linear-gradient(
      90deg,
      rgba(250,247,241,0.95) 0%,
      rgba(250,247,241,0.84) 34%,
      rgba(250,247,241,0.42) 60%,
      rgba(250,247,241,0.06) 100%
    ),
    url("../assets/images/hero/hero-carte.jpg") !important;
}

.special-hero {
  background-image:
    linear-gradient(
      90deg,
      rgba(250,247,241,0.95) 0%,
      rgba(250,247,241,0.84) 34%,
      rgba(250,247,241,0.42) 60%,
      rgba(250,247,241,0.06) 100%
    ),
    url("../assets/images/hero/hero-specialites.jpg") !important;
}

.delivery-hero {
  background-image:
    linear-gradient(
      90deg,
      rgba(250,247,241,0.95) 0%,
      rgba(250,247,241,0.84) 34%,
      rgba(250,247,241,0.42) 60%,
      rgba(250,247,241,0.06) 100%
    ),
    url("../assets/images/hero/hero-livraison.jpg") !important;
}

.gallery-hero {
  background-image:
    linear-gradient(
      90deg,
      rgba(250,247,241,0.95) 0%,
      rgba(250,247,241,0.84) 34%,
      rgba(250,247,241,0.42) 60%,
      rgba(250,247,241,0.06) 100%
    ),
    url("../assets/images/hero/hero-galerie.jpg") !important;
}

.about-hero {
  background-image:
    linear-gradient(
      90deg,
      rgba(250,247,241,0.95) 0%,
      rgba(250,247,241,0.84) 34%,
      rgba(250,247,241,0.42) 60%,
      rgba(250,247,241,0.06) 100%
    ),
    url("../assets/images/hero/hero-home.jpg") !important;
}

.reservation-hero {
  background-image:
    linear-gradient(
      90deg,
      rgba(250,247,241,0.95) 0%,
      rgba(250,247,241,0.84) 34%,
      rgba(250,247,241,0.42) 60%,
      rgba(250,247,241,0.06) 100%
    ),
    url("../assets/images/hero/hero-reservation.jpg") !important;
}

.contact-hero {
  background-image:
    linear-gradient(
      90deg,
      rgba(250,247,241,0.95) 0%,
      rgba(250,247,241,0.84) 34%,
      rgba(250,247,241,0.42) 60%,
      rgba(250,247,241,0.06) 100%
    ),
    url("../assets/images/hero/hero-contact.jpg") !important;
}

/* ---------- PAGE CARTE : CARTES PLUS RANGEES ---------- */

.entree-grid {
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
}

.special-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.menu-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(6, 58, 116, 0.12);
  box-shadow: 0 10px 22px rgba(0, 42, 92, 0.05);
}

.menu-card img {
  height: 118px;
  object-fit: cover;
}

.menu-card.large img {
  height: 132px;
}

.menu-card > div {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 14px 12px 14px;
  text-align: center;
}

.menu-card h3 {
  min-height: 52px;
  font-family: var(--title);
  color: var(--blue-dark);
  font-size: 20px;
  line-height: 1.08;
  margin-bottom: 8px;
}

.menu-card.large h3 {
  min-height: 54px;
  font-size: 22px;
}

.menu-card p {
  min-height: 74px;
  font-size: 12px;
  line-height: 1.45;
  color: #3d3d3d;
  margin-bottom: 10px;

  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-card.large p {
  min-height: 78px;
}

.menu-card strong {
  margin-top: auto;
  color: #111;
  font-size: 16px;
  font-weight: 800;
}

.small-menu-card {
  border-radius: 10px;
}

.small-menu-card h3 {
  min-height: 42px;
}

/* ---------- PAGE LIVRAISON : BOUTON UBER PLUS PRO ---------- */

.delivery-big-btn.uber {
  background: linear-gradient(135deg, #0b3f7c, #0a5fa8);
  color: #ffffff;
  font-size: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 12px 24px rgba(0, 42, 92, 0.16);
}

.delivery-big-btn.uber:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 42, 92, 0.20);
}

/* ---------- HERO LIVRAISON PLUS PRO ---------- */

.delivery-hero-text span {
  font-family: "Great Vibes", cursive;
  color: var(--gold);
  font-size: 34px;
  display: block;
  margin: 6px 0 10px;
}