/* ===============================
   AU BONHEUR — STYLE PRINCIPAL
   Site restaurant gastronomique
================================= */

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f8f3ea;
  color: #18241f;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ===============================
   VARIABLES
================================= */

:root {
  --cream: #f8f3ea;
  --sand: #e8d8bd;
  --gold: #c49a52;
  --gold-dark: #9f7732;
  --green: #18241f;
  --green-soft: #26382f;
  --white: #ffffff;
  --text-soft: #6f756d;
  --shadow: 0 24px 70px rgba(24, 36, 31, 0.16);
  --radius-large: 32px;
  --radius-medium: 22px;
  --radius-small: 14px;
}

/* ===============================
   GLOBAL
================================= */

.section {
  padding: 120px 7%;
}

.eyebrow {
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 60px;
}

.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: var(--green);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 15px 26px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.35s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--green);
  box-shadow: 0 14px 40px rgba(196, 154, 82, 0.34);
}

.btn-primary:hover {
  background: #d8b36d;
  transform: translateY(-3px);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

/* ===============================
   HEADER
================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 20px 7%;
  transition: all 0.35s ease;
}

.navbar {
  height: 76px;
  padding: 0 24px;
  border-radius: 999px;
  background: rgba(24, 36, 31, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.logo-mark {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  letter-spacing: -0.04em;
}

.logo-text {
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
}

.nav-links a {
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--green);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 34px;
  height: 28px;
  position: relative;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  margin: 8px 0;
}

/* ===============================
   HERO
================================= */

.hero {
  min-height: 100vh;
  padding-top: 180px;
  display: flex;
  align-items: center;
  position: relative;
  background:
  linear-gradient(rgba(24, 36, 31, 0.62), rgba(24, 36, 31, 0.76)),
  radial-gradient(circle at 80% 20%, rgba(196, 154, 82, 0.35), transparent 28%),
  url("assets/hero-restaurant.jpg"),
  linear-gradient(135deg, #1a2a23, #2f4438 45%, #8e7a52);
background-size: cover;
background-position: center;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(248, 243, 234, 0.18), transparent 32%),
    radial-gradient(circle at 85% 70%, rgba(232, 216, 189, 0.2), transparent 30%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 7.2rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
  margin-bottom: 28px;
}

.hero-description {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-card {
  position: absolute;
  right: 7%;
  bottom: 7%;
  z-index: 2;
  width: 330px;
  padding: 28px;
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-card-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.hero-card h2 {
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
}

.hero-card span {
  color: var(--gold);
  font-weight: 800;
}

/* ===============================
   INTRO
================================= */

.intro {
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.intro-image {
  min-height: 620px;
  border-radius: var(--radius-large);
  background:
    linear-gradient(rgba(24, 36, 31, 0.08), rgba(24, 36, 31, 0.16)),
    url("assets/salle-restaurant.jpg"),
    linear-gradient(135deg, #345044, #b79355);
background-size: cover;
background-position: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.intro-image::after {
  content: "Au Bonheur";
  position: absolute;
  bottom: 34px;
  left: 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 3rem;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.intro-text {
  font-size: 1.05rem;
  color: var(--text-soft);
}

.intro-text p + p {
  margin-top: 20px;
}

.intro-highlights {
  margin-top: 42px;
  display: grid;
  gap: 18px;
}

.intro-highlights div {
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-medium);
  box-shadow: 0 16px 50px rgba(24, 36, 31, 0.08);
}

.intro-highlights strong {
  display: block;
  color: var(--green);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.intro-highlights span {
  color: var(--text-soft);
}

/* ===============================
   SIGNATURES
================================= */

.signatures {
  background: #fffaf2;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.signature-card {
  background: var(--white);
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(24, 36, 31, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.signature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 90px rgba(24, 36, 31, 0.16);
}

.signature-image {
  height: 320px;
  background-size: cover;
  background-position: center;
}

.image-1 {
  background:
    linear-gradient(rgba(24, 36, 31, 0.08), rgba(24, 36, 31, 0.12)),
    url("assets/entree-signature.jpg"),
    linear-gradient(135deg, #d7c092, #f6f0df 45%, #667a67);
  background-size: cover;
  background-position: center;
}

.image-2 {
  background:
    linear-gradient(rgba(24, 36, 31, 0.08), rgba(24, 36, 31, 0.12)),
    url("assets/plat-signature.jpg"),
    linear-gradient(135deg, #14332b, #c88952 55%, #f5e6ce);
  background-size: cover;
  background-position: center;
}

.image-3 {
  background:
    linear-gradient(rgba(24, 36, 31, 0.08), rgba(24, 36, 31, 0.12)),
    url("assets/dessert-signature.jpg"),
    linear-gradient(135deg, #d9a15f, #fff3d0 55%, #26382f);
  background-size: cover;
  background-position: center;
}

.signature-content {
  padding: 28px;
}

.signature-content span {
  color: var(--gold-dark);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.signature-content h3 {
  margin: 12px 0;
  font-size: 1.45rem;
  line-height: 1.2;
  color: var(--green);
}

.signature-content p {
  color: var(--text-soft);
}

/* ===============================
   MENU
================================= */

.menu {
  background: var(--green);
  color: var(--white);
}

.menu .section-heading h2 {
  color: var(--white);
}

.menu .eyebrow {
  color: var(--gold);
}

.menu-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.menu-category {
  padding: 34px;
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.menu-category h3 {
  font-size: 1.8rem;
  margin-bottom: 22px;
  color: var(--gold);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item h4 {
  font-size: 1.05rem;
  margin-bottom: 5px;
}

.menu-item p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
}

.menu-item span {
  color: var(--gold);
  font-weight: 800;
  white-space: nowrap;
}

/* ===============================
   GALERIE
================================= */

.gallery {
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: 290px 290px;
  gap: 24px;
}

.gallery-item {
  border-radius: var(--radius-large);
  box-shadow: 0 18px 60px rgba(24, 36, 31, 0.12);
  transition: transform 0.35s ease;
}

.gallery-item:hover {
  transform: scale(1.025);
}

.gallery-1 {
  grid-row: span 2;
  background:
    linear-gradient(rgba(24, 36, 31, 0.06), rgba(24, 36, 31, 0.14)),
    url("assets/galerie-1.jpg"),
    linear-gradient(135deg, #23372e, #c49a52);
  background-size: cover;
  background-position: center;
}

.gallery-2 {
  background:
    linear-gradient(rgba(24, 36, 31, 0.06), rgba(24, 36, 31, 0.14)),
    url("assets/galerie-2.jpg"),
    linear-gradient(135deg, #e8d8bd, #876332);
  background-size: cover;
  background-position: center;
}

.gallery-3 {
  background:
    linear-gradient(rgba(24, 36, 31, 0.06), rgba(24, 36, 31, 0.14)),
    url("assets/galerie-3.jpg"),
    linear-gradient(135deg, #29483d, #93a685);
  background-size: cover;
  background-position: center;
}

.gallery-4 {
  grid-column: span 2;
  background:
    linear-gradient(rgba(24, 36, 31, 0.06), rgba(24, 36, 31, 0.14)),
    url("assets/galerie-4.jpg"),
    linear-gradient(135deg, #1b2a24, #d0b070);
  background-size: cover;
  background-position: center;
}

/* ===============================
   AVIS
================================= */

.reviews {
  background: #fffaf2;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 40px;
}

.review-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-large);
  box-shadow: 0 18px 60px rgba(24, 36, 31, 0.08);
}

.stars {
  color: var(--gold);
  margin-bottom: 18px;
  letter-spacing: 0.08em;
}

.review-card p {
  color: var(--text-soft);
  margin-bottom: 22px;
}

.review-card span {
  font-weight: 800;
  color: var(--green);
}

.review-form {
  background: var(--green);
  color: var(--white);
  padding: 36px;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.review-form h3 {
  font-size: 1.6rem;
  margin-bottom: 22px;
}

/* ===============================
   FORMULAIRES
================================= */

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

input,
textarea,
select {
  width: 100%;
  border: none;
  outline: none;
  padding: 17px 18px;
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.92);
  color: var(--green);
  font-size: 0.95rem;
}

textarea {
  min-height: 130px;
  resize: vertical;
  margin: 18px 0;
}

input:focus,
textarea:focus,
select:focus {
  box-shadow: 0 0 0 3px rgba(196, 154, 82, 0.35);
}

/* ===============================
   RESERVATION
================================= */

.reservation {
  background:
    linear-gradient(rgba(24, 36, 31, 0.9), rgba(24, 36, 31, 0.88)),
    radial-gradient(circle at 20% 30%, rgba(196, 154, 82, 0.38), transparent 28%),
    linear-gradient(135deg, #1a2a23, #344f43);
  color: var(--white);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.reservation h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  margin-bottom: 22px;
}

.reservation p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 600px;
}

.reservation-actions {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.booking-form {
  padding: 36px;
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.booking-form h3 {
  font-size: 1.8rem;
  margin-bottom: 24px;
}

/* ===============================
   CONTACT
================================= */

.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
}

.contact-info {
  display: grid;
  gap: 18px;
}

.contact-info article {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-medium);
  box-shadow: 0 18px 60px rgba(24, 36, 31, 0.08);
}

.contact-info h3 {
  color: var(--green);
  margin-bottom: 8px;
}

.contact-info p,
.contact-info a {
  color: var(--text-soft);
}

.contact-info a:hover {
  color: var(--gold-dark);
}

.map-card {
  min-height: 560px;
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(rgba(24, 36, 31, 0.1), rgba(24, 36, 31, 0.2)),
    radial-gradient(circle at 35% 45%, #f8e9bd, transparent 22%),
    linear-gradient(135deg, #29483d, #d6bd7a);
  display: grid;
  place-items: center;
}

.map-placeholder {
  text-align: center;
  padding: 34px;
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  color: var(--white);
}

.map-placeholder span {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.map-placeholder p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
}

/* ===============================
   FOOTER
================================= */

/* ===============================
   FOOTER
================================= */

.footer {
  background: #111b17;
  color: rgba(255, 255, 255, 0.74);
  padding: 70px 7% 34px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 50px;
}

.footer-logo {
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 900;
  display: block;
  margin-bottom: 14px;
}

.footer-brand p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h3 {
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
}

.footer-column a,
.footer-column p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.footer-column a:hover,
.footer-bottom a:hover {
  color: var(--gold);
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 28px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.86rem;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 900px) {
  .footer {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom div {
    flex-direction: column;
    gap: 8px;
  }
}
/* ===============================
   ANIMATIONS DE BASE
================================= */

.reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.96);
  filter: blur(8px);
  transition: opacity 1s ease, transform 1s ease, filter 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Les vraies animations seront activées avec JavaScript à l’étape suivante */

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 1100px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 60px;
  }

  .hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .intro-grid,
  .reservation,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .signature-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .menu-layout {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item {
    min-height: 280px;
  }

  .gallery-1,
  .gallery-4 {
    grid-column: auto;
    grid-row: auto;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 90px 5%;
  }

  .site-header {
    padding: 14px 5%;
  }

  .navbar {
    height: 66px;
    padding: 0 18px;
  }

  .logo-text {
    font-size: 0.95rem;
  }

  .hero {
    padding-top: 150px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 15vw, 4.4rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-actions,
  .reservation-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-card {
    width: 100%;
  }

  .intro-image {
    min-height: 420px;
  }

  .intro-image::after {
    font-size: 2.2rem;
  }

  .signature-image {
    height: 260px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .menu-category,
  .booking-form,
  .review-form {
    padding: 24px;
  }

  .menu-item {
    flex-direction: column;
    gap: 8px;
  }

  .map-card {
    min-height: 380px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
/* ===============================
   INTERACTIONS JAVASCRIPT
================================= */

.site-header.scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
}

.site-header.scrolled .navbar {
  height: 66px;
  background: rgba(17, 27, 23, 0.92);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

/* Animation apparition au scroll */
.reveal {
  opacity: 0;
  transform: translateY(42px) scale(0.98);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Petit décalage élégant entre les cartes */
.signature-card:nth-child(2),
.review-card:nth-child(2) {
  transition-delay: 0.12s;
}

.signature-card:nth-child(3),
.review-card:nth-child(3) {
  transition-delay: 0.24s;
}

/* Menu mobile actif */
.navbar {
  position: relative;
}

.menu-toggle.active span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle.active span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.menu-toggle span {
  transition: transform 0.3s ease;
}

@media (max-width: 1100px) {
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 18px;
    border-radius: 28px;
    background: rgba(17, 27, 23, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  }

  .nav-links.open li {
    width: 100%;
  }

  .nav-links.open a {
    display: block;
    padding: 14px 8px;
    color: rgba(255, 255, 255, 0.86);
  }

  .nav-links.open a:hover {
    color: var(--gold);
  }
}

/* Feedback formulaire */
.form-success {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: var(--radius-small);
  background: rgba(196, 154, 82, 0.16);
  border: 1px solid rgba(196, 154, 82, 0.34);
  color: var(--white);
  font-weight: 700;
}
.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  filter: saturate(0.9) contrast(1.05);
}
/* ===============================
   EXPERIENCE PREMIUM
================================= */

.experience {
  background: var(--cream);
  padding-top: 40px;
}

.experience-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
  padding: 70px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 20% 20%, rgba(196, 154, 82, 0.24), transparent 28%),
    linear-gradient(135deg, #17241f, #2d4438);
  color: var(--white);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.experience-panel::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -130px;
  top: -130px;
  border-radius: 50%;
  background: rgba(232, 216, 189, 0.12);
}

.experience-content {
  position: relative;
  z-index: 2;
}

.experience-content h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
}

.experience-content p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.experience-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
}

.experience-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  transition: transform 0.35s ease, background 0.35s ease;
}

.experience-item:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.12);
}

.experience-item span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.experience-item h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.experience-item p {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1000px) {
  .experience-panel {
    grid-template-columns: 1fr;
    padding: 46px;
  }
}

@media (max-width: 700px) {
  .experience-panel {
    padding: 30px;
    border-radius: 30px;
  }

  .experience-item {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   FORMULAIRES AMÉLIORÉS
================================= */

.form-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.62);
  margin: -4px 0 18px;
}

.review-card.added {
  animation: newReview 0.7s ease forwards;
  border: 1px solid rgba(196, 154, 82, 0.28);
}

@keyframes newReview {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

input::placeholder,
textarea::placeholder {
  color: rgba(24, 36, 31, 0.58);
}

select:invalid {
  color: rgba(24, 36, 31, 0.58);
}
/* ===============================
   FINITIONS PREMIUM HERO
================================= */

.hero-highlights {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-highlights div {
  min-width: 190px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.hero-highlights strong {
  display: block;
  color: var(--white);
  font-size: 0.94rem;
  margin-bottom: 3px;
}

.hero-highlights span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
}

.scroll-indicator {
  position: absolute;
  left: 7%;
  bottom: 38px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.scroll-indicator span {
  width: 34px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  position: relative;
}

.scroll-indicator span::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
  animation: scrollDot 1.6s infinite ease;
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 22px);
  }
}

/* ===============================
   BANDE CRÉDIBILITÉ
================================= */

.stats-strip {
  padding: 34px 7%;
  background: #111b17;
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.stats-strip article {
  padding: 32px;
  background: rgba(255, 255, 255, 0.045);
  border-radius: 24px;
}

.stats-strip span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--green);
  font-weight: 900;
  margin-bottom: 18px;
}

.stats-strip h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.stats-strip p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.95rem;
}

/* Responsive des finitions */
@media (max-width: 1000px) {
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 700px) {
  .hero-highlights {
    flex-direction: column;
  }

  .hero-highlights div {
    width: 100%;
  }

  .stats-strip {
    padding: 24px 5%;
  }

  .stats-strip article {
    padding: 24px;
  }
}
/* ===============================
   CTA FINAL
================================= */

.final-cta {
  background:
    linear-gradient(rgba(24, 36, 31, 0.9), rgba(24, 36, 31, 0.92)),
    radial-gradient(circle at 20% 20%, rgba(196, 154, 82, 0.35), transparent 30%),
    linear-gradient(135deg, #17241f, #3a5547);
  color: var(--white);
  text-align: center;
}

.final-cta-content {
  max-width: 840px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}

.final-cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  max-width: 680px;
  margin: 0 auto 34px;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 700px) {
  .final-cta-actions {
    flex-direction: column;
  }
}