/* ClickToEat — Hero v1 */

:root {
  --wine: #3A1220;
  --coral: #E0533C;
  --terracotta: #E08A3C;
  --cream: #F5EAD9;
  --white: #FFFFFF;
  --ink: #24151A;
  --muted: #8F7C78;
  --line: rgba(58, 18, 32, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --ease: cubic-bezier(.22, .8, .25, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--wine);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  overflow: hidden;
  background: var(--cream);
}

.navbar {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px max(32px, calc((100% - 1320px) / 2));
  color: var(--white);
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s ease;
}

.navbar.scrolled {
  padding-top: 15px;
  padding-bottom: 15px;
  background: rgba(58, 18, 32, .9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .28);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand img {
  width: 35px;
  height: 35px;
  object-fit: cover;
  border-radius: 10px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: 80px;
}

.desktop-nav a,
.login-link {
  font-size: 13px;
  font-weight: 500;
  opacity: .78;
  transition: opacity .25s ease;
}

.desktop-nav a:hover,
.login-link:hover { opacity: 1; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 56px;
  padding: 0 25px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .3s var(--ease), box-shadow .3s ease, background .3s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button span { font-size: 18px; }

.button-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 12px;
}

.button-light {
  background: var(--white);
  color: var(--wine);
}

.button-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 14px 35px rgba(224, 83, 60, .24);
}

.button-outline {
  border: 1px solid rgba(255,255,255,.28);
  color: var(--white);
}

.button-outline:hover {
  background: rgba(255,255,255,.1);
}

.hero {
  position: relative;
  min-height: 880px;
  padding: 170px max(32px, calc((100vw - 1320px) / 2)) 90px;
  display: grid;
  grid-template-columns: minmax(420px, .9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 45%, rgba(224, 138, 60, .18), transparent 25%),
    radial-gradient(circle at 12% 75%, rgba(224, 83, 60, .12), transparent 30%),
    var(--wine);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(to top, var(--cream), transparent);
  opacity: .18;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.hero-glow-one {
  width: 350px;
  height: 350px;
  right: 16%;
  top: 22%;
  background: rgba(224, 138, 60, .14);
}

.hero-glow-two {
  width: 280px;
  height: 280px;
  left: -80px;
  bottom: -100px;
  background: rgba(224, 83, 60, .13);
}

.logo-pattern {
  position: absolute;
  z-index: 1;
  width: 620px;
  height: 620px;
  right: 20%;
  top: 14%;
  opacity: .06;
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20100%20100%22%20fill%3D%22none%22%20stroke%3D%22%23E08A3C%22%20stroke-width%3D%225%22%3E%3Crect%20x%3D%2210%22%20y%3D%2210%22%20width%3D%2280%22%20height%3D%2280%22%20rx%3D%2222%22%2F%3E%3Crect%20x%3D%2224%22%20y%3D%2224%22%20width%3D%2220%22%20height%3D%2220%22%20rx%3D%226%22%2F%3E%3Crect%20x%3D%2256%22%20y%3D%2224%22%20width%3D%2220%22%20height%3D%2220%22%20rx%3D%226%22%2F%3E%3Crect%20x%3D%2224%22%20y%3D%2256%22%20width%3D%2220%22%20height%3D%2220%22%20rx%3D%226%22%2F%3E%3Crect%20x%3D%2252%22%20y%3D%2252%22%20width%3D%228%22%20height%3D%228%22%20rx%3D%222%22%20fill%3D%22%23E08A3C%22%20stroke%3D%22none%22%2F%3E%3Crect%20x%3D%2264%22%20y%3D%2252%22%20width%3D%228%22%20height%3D%228%22%20rx%3D%222%22%20fill%3D%22%23E08A3C%22%20stroke%3D%22none%22%2F%3E%3Crect%20x%3D%2252%22%20y%3D%2264%22%20width%3D%228%22%20height%3D%228%22%20rx%3D%222%22%20fill%3D%22%23E08A3C%22%20stroke%3D%22none%22%2F%3E%3Crect%20x%3D%2264%22%20y%3D%2264%22%20width%3D%228%22%20height%3D%228%22%20rx%3D%222%22%20fill%3D%22%23E08A3C%22%20stroke%3D%22none%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
  transform: rotate(-8deg);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 650px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(224,83,60,.12);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(50px, 5.4vw, 86px);
  line-height: .99;
  letter-spacing: -.065em;
  font-weight: 600;
}

.hero h1 em {
  display: block;
  color: var(--terracotta);
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: -.055em;
}

.hero-description {
  max-width: 490px;
  margin: 32px 0 34px;
  color: rgba(255,255,255,.66);
  font-size: 16px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 50px;
  color: rgba(255,255,255,.78);
}

.hero-proof strong,
.hero-proof small {
  display: block;
}

.hero-proof strong {
  font-size: 12px;
  margin-bottom: 4px;
}

.hero-proof small {
  color: rgba(255,255,255,.45);
  font-size: 11px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-left: -7px;
  border: 2px solid var(--wine);
  border-radius: 50%;
  background: var(--cream);
  font-size: 14px;
}

.avatar-stack span:first-child { margin-left: 0; }

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.hero-caption {
  position: relative;
  z-index: 3;
  max-width: 420px;
  text-align: center;
}

.hero-caption h2 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: -.03em;
  font-weight: 600;
  color: var(--white);
}

.hero-caption h2 em {
  display: block;
  margin-top: 4px;
  color: var(--terracotta);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 600;
}

.hero-caption::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin: 18px auto 0;
  background: var(--terracotta);
}

.phone-frame {
  position: relative;
  width: min(480px, 80%);
  transform: rotate(5deg) translateY(18px);
  filter: drop-shadow(30px 38px 40px rgba(0,0,0,.32));
  transition: transform .7s var(--ease);
}

.phone-frame:hover {
  transform: rotate(2deg) translateY(4px) scale(1.015);
}

.phone-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(224,138,60,.22);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 650px;
  height: 650px;
  transform: rotate(-22deg) scaleX(.68);
}

.orbit-two {
  width: 500px;
  height: 500px;
  transform: rotate(24deg) scaleX(.7);
  border-color: rgba(224,83,60,.18);
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 17px;
  background: rgba(255,255,255,.96);
  color: var(--wine);
  box-shadow: 0 20px 45px rgba(0,0,0,.22);
  backdrop-filter: blur(16px);
  animation: float 5s ease-in-out infinite;
}

.floating-card small,
.floating-card strong {
  display: block;
}

.floating-card small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
}

.floating-card strong {
  font-size: 12px;
}

.card-icon,
.rating-star {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: var(--coral);
  font-size: 16px;
}

.card-trending {
  top: 14%;
  left: 1%;
}

.card-location {
  right: 2%;
  top: 48%;
  animation-delay: -1.5s;
}

.card-rating {
  left: 6%;
  bottom: 24%;
  animation-delay: -3s;
}

.rating-star {
  background: var(--terracotta);
  color: var(--white);
}

.location-pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 8px rgba(224,83,60,.14), 0 0 0 16px rgba(224,83,60,.06);
}

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

.hero-scroll {
  position: absolute;
  z-index: 5;
  bottom: 32px;
  left: max(32px, calc((100vw - 1320px) / 2));
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.45);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.scroll-line {
  width: 42px;
  height: 1px;
  background: var(--terracotta);
}

.experience-section {
  padding: 130px max(32px, calc((100vw - 1320px) / 2));
  background: var(--cream);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 52px;
}

.eyebrow-dark { color: var(--coral); }

.section-heading h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 74px);
  line-height: .98;
  letter-spacing: -.06em;
}

.section-heading h2 em {
  color: var(--coral);
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.section-heading > p {
  max-width: 340px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

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

.experience-card {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  color: var(--white);
  transition: transform .5s var(--ease);
}

.experience-card:hover {
  transform: translateY(-8px);
}

.experience-romantic {
  background-image: url("assets/exp-romantic.jpg");
}

.experience-friends {
  background-image: url("assets/exp-friends.jpg");
}

.experience-fast {
  background-image: url("assets/exp-fast.jpg");
}

.experience-calm {
  background-image: url("assets/exp-calm.jpg");
}

.experience-family {
  background-color: #5a3320;
  background-image: url("assets/exp-family.jpg");
}

.experience-festive {
  background-color: #6b2438;
  background-image: url("assets/exp-festive.jpg");
}

.experience-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58,18,32,.92), rgba(58,18,32,.04) 68%);
}

.experience-icon {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(224, 83, 60, .92);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(224, 83, 60, .35);
}

.experience-icon svg {
  width: 24px;
  height: 24px;
}

.experience-content {
  position: absolute;
  inset: auto 24px 25px;
}

.experience-content h3 {
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: -.04em;
}

.experience-content p {
  margin: 0 0 20px;
  max-width: 90%;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.5;
}

.experience-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  transition: transform .25s var(--ease), background .25s ease;
}

.experience-button:hover {
  transform: translateY(-2px);
  background: var(--terracotta);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

@media (max-width: 1050px) {
  .desktop-nav { gap: 18px; margin-left: 20px; }
  .hero { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: clamp(48px, 5vw, 70px); }
  .phone-frame { width: 440px; }
  .floating-card { transform: scale(.9); }
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .navbar {
    width: 100%;
    padding: 18px 20px;
  }

  .navbar.scrolled {
    padding: 12px 20px;
  }

  .desktop-nav,
  .nav-actions { display: none; }

  .menu-toggle {
    display: grid;
    gap: 6px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--white);
  }

  .hero {
    min-height: auto;
    padding: 130px 20px 70px;
    display: block;
  }

  .hero-copy { max-width: none; }

  .hero h1 {
    font-size: clamp(45px, 13vw, 70px);
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-proof { margin-top: 34px; }

  .hero-visual {
    min-height: 560px;
    margin-top: 25px;
  }

  .phone-frame {
    width: min(390px, 82vw);
    transform: rotate(4deg) translateY(12px);
  }

  .visual-orbit { transform: rotate(-22deg) scaleX(.65); }

  .floating-card {
    padding: 10px 12px;
    transform: scale(.82);
  }

  .card-trending { top: 11%; left: -5%; }
  .card-location { right: -6%; top: 43%; }
  .card-rating { left: -2%; bottom: 10%; }

  .hero-scroll {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 15px;
  }

  .experience-section {
    padding: 85px 20px;
  }

  .section-heading {
    display: block;
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: 48px;
  }

  .section-heading > p {
    margin-top: 24px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .experience-card {
    min-height: 420px;
  }

  .mobile-menu {
    position: fixed;
    z-index: 15;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    padding: 40px;
    background: var(--wine);
    color: var(--white);
    transform: translateX(100%);
    transition: transform .45s var(--ease);
  }

  .mobile-menu.open { transform: translateX(0); }

  .mobile-menu > a:not(.button) {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -.04em;
  }
}

/* =========================================================
   LE CONSTAT
========================================================= */
.constat-section {
  padding: 130px max(32px, calc((100vw - 1320px) / 2));
  background: var(--white);
}

.constat-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
  align-items: center;
}

.constat-copy h2 {
  margin: 18px 0 34px;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--wine);
}

.constat-copy p {
  margin: 0 0 20px;
  max-width: 560px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.constat-copy p strong { color: var(--wine); }

.constat-stats {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.stat-card {
  position: relative;
  overflow: hidden;
  padding: 34px 34px 30px;
  border-radius: 26px;
  background: linear-gradient(160deg, var(--cream), #efe0c8);
  border: 1px solid rgba(58,18,32,.05);
  box-shadow: 0 26px 50px -30px rgba(58,18,32,.28);
  transition: transform .4s var(--ease), box-shadow .4s ease;
}

.stat-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,138,60,.18), transparent 70%);
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 70px -30px rgba(224,138,60,.45);
}

.stat-value {
  display: block;
  margin-bottom: 12px;
  font-family: "Playfair Display", serif;
  font-size: clamp(44px, 4.4vw, 60px);
  font-weight: 700;
  line-height: 1;
  color: var(--terracotta);
}

.stat-card p {
  margin: 0;
  max-width: 340px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* =========================================================
   FLUX SOCIAL & IA
========================================================= */
.innovation-section {
  position: relative;
  overflow: hidden;
  padding: 130px max(32px, calc((100vw - 1320px) / 2));
  background:
    radial-gradient(circle at 20% 0%, rgba(224,138,60,.14), transparent 34%),
    radial-gradient(circle at 90% 90%, rgba(224,83,60,.12), transparent 36%),
    var(--wine);
  color: var(--white);
}

.innovation-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  top: 20%;
  right: 8%;
  border-radius: 50%;
  background: rgba(224,138,60,.12);
  filter: blur(90px);
  pointer-events: none;
}

.innovation-heading {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin-bottom: 56px;
}

.innovation-heading h2 {
  margin: 18px 0 20px;
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--white);
}

.innovation-heading h2 em {
  color: var(--terracotta);
  font-style: italic;
}

.innovation-heading p {
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: 16px;
  line-height: 1.75;
}

.innovation-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 26px;
  align-items: stretch;
}

/* feed card */
.feed-card {
  padding: 26px;
  border-radius: 26px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
}

.feed-head { margin-bottom: 18px; }

.feed-live {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
}

.feed-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 0 rgba(224,83,60,.6);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(224,83,60,.6); }
  70% { box-shadow: 0 0 0 12px rgba(224,83,60,0); }
  100% { box-shadow: 0 0 0 0 rgba(224,83,60,0); }
}

.feed-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* round consumer bricks */
.share-brick {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .35s var(--ease), background .35s ease, border-color .35s ease;
  animation: brick-float 6s ease-in-out infinite;
}

.share-brick:nth-child(2) { animation-delay: -1.5s; }
.share-brick:nth-child(3) { animation-delay: -3s; }
.share-brick:nth-child(4) { animation-delay: -4.5s; }

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

.share-brick:hover {
  transform: translateX(6px);
  background: rgba(255,255,255,.1);
  border-color: rgba(224,138,60,.4);
}

.share-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.28);
  box-shadow: 0 10px 22px -10px rgba(0,0,0,.55);
}

.share-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* restaurant promo brick */
.share-thumb {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(224,138,60,.5);
  box-shadow: 0 12px 24px -10px rgba(224,138,60,.5);
}

.share-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brick-promo {
  align-items: flex-start;
  border-radius: 20px;
  background: rgba(224,138,60,.12);
  border-color: rgba(224,138,60,.4);
}

.verified {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  margin-left: 4px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  font-size: 10px;
  vertical-align: middle;
}

.tag-promo {
  background: linear-gradient(150deg, var(--coral), #a8321f);
  color: var(--white);
}

.promo-note {
  font-size: 12px;
  color: #f0b072;
  font-weight: 600;
}

.share-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }

.share-body strong { font-size: 15px; }

.share-action {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.68);
}

.share-tag {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tag-lieu { background: rgba(224,138,60,.2); color: #f0b072; }
.tag-resa { background: rgba(224,83,60,.2); color: #f08a72; }
.tag-avis { background: rgba(255,255,255,.14); color: #ffd27a; }

/* dual benefit cards */
.innovation-cols {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 22px;
}

.innov-card {
  padding: 30px 30px 28px;
  border-radius: 24px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1);
  transition: transform .4s var(--ease), border-color .4s ease, box-shadow .4s ease;
}

.innov-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224,138,60,.4);
  box-shadow: 0 40px 70px -34px rgba(0,0,0,.5), 0 0 40px -14px rgba(224,138,60,.35);
}

.innov-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 15px;
  background: linear-gradient(150deg, var(--terracotta), var(--coral));
  color: var(--white);
  box-shadow: 0 14px 28px -12px rgba(224,138,60,.55);
}

.innov-icon svg { width: 26px; height: 26px; }

.innov-card h3 {
  margin: 0 0 16px;
  font-family: "Playfair Display", serif;
  font-size: 23px;
  letter-spacing: -.02em;
}

.innov-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.innov-card li {
  position: relative;
  padding-left: 24px;
  color: rgba(255,255,255,.72);
  font-size: 14.5px;
  line-height: 1.5;
}

.innov-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
}

/* =========================================================
   POUR LES RESTAURANTS
========================================================= */
.benefits-section {
  padding: 130px max(32px, calc((100vw - 1320px) / 2));
  background: var(--cream);
}

.benefits-heading {
  max-width: 620px;
  margin-bottom: 56px;
}

.benefits-heading h2 {
  margin: 18px 0 20px;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--wine);
}

.benefits-heading h2 em {
  color: var(--coral);
  font-style: italic;
}

.benefits-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

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

.benefit-card {
  padding: 32px 28px 34px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 26px 50px -34px rgba(58,18,32,.3);
  transition: transform .4s var(--ease), box-shadow .4s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 44px 74px -34px rgba(224,138,60,.4);
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 15px;
  background: linear-gradient(150deg, var(--terracotta), var(--coral));
  color: var(--white);
  box-shadow: 0 14px 28px -12px rgba(224,138,60,.55);
}

.benefit-icon svg { width: 26px; height: 26px; }

.benefit-card h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  letter-spacing: -.02em;
  color: var(--wine);
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

/* =========================================================
   FONCTIONNEMENT
========================================================= */
.steps-section {
  padding: 130px max(32px, calc((100vw - 1320px) / 2));
  background:
    radial-gradient(circle at 85% 12%, rgba(224,138,60,.10), transparent 30%),
    var(--wine);
  color: var(--white);
}

.steps-heading { margin-bottom: 60px; }

.steps-heading h2 {
  margin: 18px 0 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4vw, 62px);
  letter-spacing: -.02em;
  color: var(--white);
}

.steps-heading h2 em {
  color: var(--terracotta);
  font-style: italic;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.step-card {
  position: relative;
  padding: 34px 30px 40px;
  border-radius: 22px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.1);
  transition: transform .45s var(--ease), background .45s ease, border-color .45s ease, box-shadow .45s ease;
}

.step-card:hover {
  transform: translateY(-12px);
  background: rgba(255,255,255,.06);
  border-color: rgba(224,138,60,.4);
  box-shadow: 0 40px 70px -30px rgba(0,0,0,.55), 0 0 40px -12px rgba(224,138,60,.35);
}

.step-num {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--terracotta), var(--coral));
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 14px 28px -10px rgba(224,138,60,.6);
  transition: transform .45s var(--ease);
}

.step-card:hover .step-num { transform: scale(1.08) rotate(-4deg); }

.step-card h3 {
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  letter-spacing: -.02em;
}

.step-card p {
  margin: 0;
  color: rgba(255,255,255,.66);
  font-size: 14px;
  line-height: 1.6;
}

/* =========================================================
   TARIFS
========================================================= */
.pricing-section {
  padding: 130px max(32px, calc((100vw - 1320px) / 2)) 110px;
  background: var(--cream);
}

.pricing-heading { margin-bottom: 60px; }

.pricing-heading h2 {
  margin: 18px 0 0;
  max-width: 760px;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--wine);
}

.pricing-heading h2 em {
  color: var(--coral);
  font-style: italic;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: end;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 30px 60px -40px rgba(58,18,32,.35);
  transition: transform .4s var(--ease), box-shadow .4s ease;
}

/* staircase: smallest -> largest */
.price-h1 { min-height: 470px; }
.price-h2 { min-height: 510px; }
.price-h3 { min-height: 550px; }
.price-h4 { min-height: 590px; }

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 46px 80px -40px rgba(58,18,32,.5);
}

.price-featured {
  border: 2px solid var(--terracotta);
  box-shadow: 0 40px 80px -34px rgba(224,138,60,.55);
}

.price-badge {
  align-self: flex-start;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--peach, #FBDFC0);
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.price-featured .price-badge {
  background: linear-gradient(150deg, var(--terracotta), var(--coral));
  color: var(--white);
}

.price-card h3 {
  margin: 22px 0 14px;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: var(--wine);
}

.price-value {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  font-weight: 700;
  color: var(--wine);
  line-height: 1;
}

.price-value span {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
}

.price-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  position: relative;
  padding: 14px 0 14px 22px;
  border-top: 1px solid rgba(58,18,32,.08);
  color: var(--wine);
  font-size: 14.5px;
}

.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
}

.price-note {
  margin: 44px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}

/* =========================================================
   CTA FINAL
========================================================= */
.cta-section {
  padding: 120px 32px 130px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 120%, var(--coral), transparent 60%),
    var(--terracotta);
  color: var(--white);
}

.eyebrow-light {
  justify-content: center;
  color: rgba(255,255,255,.85);
}

.cta-section .eyebrow-light::before,
.eyebrow-light::before {
  background: var(--white);
}

.cta-section .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: rgba(255,255,255,.85);
}

.cta-section .eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
}

.cta-section h2 {
  max-width: 860px;
  margin: 0 auto 40px;
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 1.08;
  letter-spacing: -.02em;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-button {
  border: 1.5px solid rgba(255,255,255,.7);
  color: var(--white);
  background: transparent;
}

.cta-button:hover {
  background: var(--white);
  color: var(--terracotta);
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer {
  padding: 70px max(32px, calc((100vw - 1320px) / 2)) 40px;
  background: var(--wine);
  color: rgba(255,255,255,.6);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 44px;
}

.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

.footer-logo em {
  color: var(--terracotta);
  font-style: italic;
}

.footer-brand p {
  max-width: 320px;
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.6;
}

.footer-col h4 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color .25s ease;
}

.footer-col a:hover { color: var(--terracotta); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13px;
}

@media (max-width: 1050px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); align-items: stretch; }
  .price-h1, .price-h2, .price-h3, .price-h4 { min-height: 0; }
  .innovation-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .constat-section,
  .benefits-section,
  .innovation-section,
  .steps-section,
  .pricing-section { padding-left: 20px; padding-right: 20px; }
  .constat-grid { grid-template-columns: 1fr; gap: 40px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .innovation-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 90px 20px 100px; }
  .footer-grid { flex-direction: column; gap: 32px; }
  .share-tag { font-size: 10px; }
}
