:root {
  --gold: #C9A227;
  --gold-dark: #B38B1D;
  --gold-light: #E7D9A8;

  --gold-soft-border: rgba(201, 162, 39, .22);
  --gold-soft-bg: rgba(201, 162, 39, .10);

  --black: #0B0B0B;
  --white: #FFFFFF;
  --soft: #F8F2DE;
  --cream: #FBF7F1;

  --border: #E7D9A8;
  --text: #1F1A17;
  --muted: #6E6256;

  --surface: #FFFFFF;
  --surface-alt: #FCFAF5;

  --radius: 18px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .08);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  background: var(--cream);
  color: var(--text);
}

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

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

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-weight: 800;
  letter-spacing: .2px;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 13px;
  margin-top: 3px;
}

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

.nav-link {
  font-weight: 600;
  color: var(--muted);
  padding: 10px 10px;
  border-radius: 12px;
}

.nav-link:hover {
  background: #f6f6f6;
  color: var(--text);
}

.nav-link.is-active {
  color: var(--text);
  background: #f6f6f6;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Header premium sur la page d'accueil */
@media (min-width: 981px) {
  .page-home .site-header {
    position: fixed;
    top: 28px;
    left: 0;
    right: 0;
    z-index: 60;
    background: transparent;
    border-bottom: none;
    backdrop-filter: none;
    transition:
      top .25s ease,
      background .25s ease,
      border-color .25s ease;
  }

  .page-home .site-header.is-scrolled {
    top: 0;
    background: rgba(251, 247, 241, .88);
    border-bottom: 1px solid rgba(201, 162, 39, .20);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
  }

  .page-home .header-inner {
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    box-shadow:
      0 18px 55px rgba(0, 0, 0, .12),
      inset 0 1px 0 rgba(255, 255, 255, .55);
    backdrop-filter: blur(18px);
  }

  .page-home .site-header.is-scrolled .header-inner {
    border-radius: 0;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .page-home .brand-logo {
    width: 46px;
    height: 46px;
    border-radius: 8px;
  }

  .page-home .brand-title {
    color: var(--text);
  }

  .page-home .brand-subtitle {
    color: rgba(31, 26, 23, .68);
  }

  .page-home .nav-link {
    color: rgba(31, 26, 23, .72);
  }

  .page-home .nav-link:hover,
  .page-home .nav-link.is-active {
    background: rgba(201, 162, 39, .12);
    color: var(--text);
  }

  .page-home .header-cta .btn-ghost {
    background: rgba(255, 255, 255, .72);
    border-color: rgba(201, 162, 39, .38);
  }

  .page-home .header-cta .btn-primary {
    box-shadow: 0 10px 28px rgba(0, 0, 0, .16);
  }
}

/* Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  box-shadow: none;
  cursor: pointer;
  transition:
    transform .18s ease,
    background .2s ease,
    border-color .2s ease,
    filter .2s ease,
    box-shadow .2s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  border: none;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: #d0d0d0;
  background: #fafafa;
}

.hero .btn-ghost {
  border-color: rgba(255, 255, 255, .55);
  color: var(--white);
  background: rgba(255, 255, 255, .10);
  backdrop-filter: blur(8px);
}

.hero .btn-ghost:hover {
  border-color: rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .18);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
}

/* Main */
.site-main {
  min-height: 60vh;
}

/* Hero premium Dar Salam */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 150px 0 80px;
  color: var(--white);
  background-image:
    linear-gradient(90deg,
      rgba(11, 11, 11, .50) 0%,
      rgba(11, 11, 11, .30) 44%,
      rgba(11, 11, 11, .06) 100%),
    url("/assets/img/galerie_web/g01.webp");
  background-size: cover;
  background-position: center;
}

.hero-inner {
  display: block;
  grid-template-columns: 1.02fr .98fr;
  gap: 34px;
  align-items: center;
}

.hero-content {
  max-width: 640px;
}

.badge {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .28);
  color: var(--white);
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
  backdrop-filter: blur(8px);
}

.hero-title {
  margin: 16px 0 0;
  max-width: 720px;
  font-size: clamp(40px, 4.4vw, 66px);
  line-height: .96;
  letter-spacing: -.9px;
}

.hero-lead {
  margin: 18px 0 0;
  max-width: 620px;
  color: rgba(255, 255, 255, .86);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-trust {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.trust-item {
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, .12);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .04);
  backdrop-filter: blur(8px);
}

.trust-kpi {
  display: block;
  font-weight: 950;
  color: var(--white);
}

.trust-label {
  display: block;
  color: rgba(255, 255, 255, .74);
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.35;
}

.hero-media {
  display: none;
  place-items: center;
}

.hero-photo {
  position: relative;
  width: 100%;
  min-height: 410px;
  border-radius: 30px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .16);
  border: 1px solid rgba(201, 162, 39, .28);
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .18)),
    url("/assets/img/galerie_web/g01.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 22px;
  pointer-events: none;
}

/* Trust strip */
.trust-strip {
  position: relative;
  z-index: 5;
  padding: 0 0 34px;
  margin-top: -36px;
  background: var(--cream);
}

.trust-strip .container {
  width: min(1240px, calc(100% - 32px));
}

.trust-strip-inner {
  border: 1px solid rgba(201, 162, 39, .20);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(248, 242, 222, .82)),
    radial-gradient(circle at 0 0, rgba(201, 162, 39, .14), transparent 30%);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .10);
  padding: 24px;
}

.trust-strip-head {
  max-width: 720px;
  margin-bottom: 18px;
}

.trust-strip-kicker {
  margin: 0;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.trust-strip-title {
  margin: 8px 0 0;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -.2px;
}

.trust-strip-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-strip-item {
  border: 1px solid rgba(201, 162, 39, .14);
  border-radius: 18px;
  background: rgba(255, 255, 255, .68);
  padding: 14px;
}

.trust-strip-item strong {
  display: block;
  color: var(--text);
  font-size: 15px;
}

.trust-strip-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

/* Sections */
.section {
  padding: 42px 0;
}

.section.alt {
  background: var(--surface-alt);
}

.section-soft {
  background: var(--soft);
  border-top: 1px solid rgba(0, 0, 0, .04);
  border-bottom: 1px solid rgba(0, 0, 0, .04);
}

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

.section-title {
  margin: 0;
  font-size: 26px;
  letter-spacing: -.2px;
}

.section-subtitle {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, .12);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  background: white;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  opacity: .85;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, .32);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .10);
}

.card-title {
  margin: 0;
  padding-top: 6px;
  font-size: 16px;
}

.card-text {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.section-cta {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Showcase sections */
.showcase-section {
  position: relative;
  background:
    radial-gradient(circle at 18% 18%, rgba(201, 162, 39, .14), transparent 34%),
    radial-gradient(circle at 88% 80%, rgba(201, 162, 39, .08), transparent 30%),
    linear-gradient(180deg, #fffaf0 0%, var(--cream) 100%);
}

.showcase-section .container {
  width: min(1240px, calc(100% - 32px));
}

.showcase-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 46px;
  align-items: center;
}

.showcase-media {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(201, 162, 39, .24);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .14);
}

.showcase-media::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, .46);
  border-radius: 24px;
  pointer-events: none;
}

.showcase-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transform: scale(1.02);
}

.showcase-content {
  max-width: 620px;
}

.showcase-content .section-title {
  max-width: 620px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -.6px;
}

.showcase-content .section-subtitle {
  max-width: 620px;
  font-size: 17px;
}

.showcase-kicker {
  margin: 0 0 10px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.showcase-points {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.showcase-points span {
  display: inline-flex;
  border: 1px solid var(--gold-soft-border);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, .72);
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

/* Process premium */
.process-section {
  position: relative;
  background:
    radial-gradient(circle at 16% 20%, rgba(201, 162, 39, .12), transparent 34%),
    linear-gradient(180deg, var(--soft) 0%, #fbf7f1 100%);
  border-top: 1px solid rgba(201, 162, 39, .14);
  border-bottom: 1px solid rgba(201, 162, 39, .12);
}

.process-inner {
  width: min(1240px, calc(100% - 32px));
}

.process-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.process-kicker {
  margin: 0 0 10px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step {
  border: 1px solid var(--gold-soft-border);
  background: rgba(255, 255, 255, .68);
  border-radius: var(--radius);
  padding: 16px;
}

.process-step {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .82)),
    radial-gradient(circle at 0 0, rgba(201, 162, 39, .12), transparent 34%);
  box-shadow: 0 16px 45px rgba(0, 0, 0, .07);
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}

.process-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, .34);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .10);
}

.step-number {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(201, 162, 39, .42);
  font-size: 38px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.04em;
}

.step-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.step-text {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Gallery placeholder */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  height: 170px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--gold-soft-bg), rgba(0, 0, 0, .04));
}

/* CTA banner */
.section-cta-banner {
  padding: 34px 0;
}

.cta-banner {
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid #C9A227;
  background: #F8F2DE;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cta-title {
  margin: 0;
  font-size: 22px;
}

.cta-text {
  margin: 8px 0 0;
  color: var(--muted);
}

/* Pages */
.page-title {
  margin: 0;
  font-size: 32px;
  letter-spacing: -.3px;
}

.page-lead {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.muted {
  color: var(--muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 34px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.footer-title {
  margin: 0;
  font-size: 18px;
}

.footer-heading {
  margin: 0 0 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}

.footer-text {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-list a:hover {
  color: var(--gold-dark);
}

.footer-bottom {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

/* Responsive */
@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    grid-auto-rows: auto;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 10px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .nav.is-open {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 38px 0 28px;
  }

  .hero-inner {
    gap: 24px;
  }

  .hero-photo {
    min-height: 300px;
  }

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

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

  .trust-strip-list {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .showcase-media img {
    height: 320px;
  }
}

@media (max-width: 520px) {

  .hero {
    min-height: 720px;
    padding: 92px 0 44px;
    background-image:
      linear-gradient(180deg,
        rgba(11, 11, 11, .62) 0%,
        rgba(11, 11, 11, .42) 55%,
        rgba(11, 11, 11, .18) 100%),
      url("/assets/img/galerie_web/g01.webp");
    background-position: center;
  }

  .hero-content {
    max-width: 100%;
  }

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

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

  .hero-title {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.08;
  }

  .hero-trust {
    margin-top: 18px;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .hero-photo {
    min-height: 260px;
    border-radius: 24px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-photo {
    min-height: 230px;
  }

  .section {
    padding: 34px 0;
  }

  .section-title {
    font-size: 24px;
    line-height: 1.15;
  }

  .section-subtitle {
    font-size: 16px;
    line-height: 1.55;
  }

  .section-cta .btn {
    width: 100%;
  }

  .showcase-section {
    padding-top: 44px;
  }

  .showcase-grid {
    gap: 24px;
  }

  .showcase-content .section-title {
    font-size: 28px;
    line-height: 1.08;
  }

  .showcase-content .section-subtitle {
    font-size: 16px;
  }

  .showcase-media {
    border-radius: 24px;
  }

  .showcase-media img {
    height: 260px;
  }


  .showcase-points {
    gap: 8px;
  }

  .showcase-points span {
    width: 100%;
    justify-content: center;
    padding: 10px 12px;
  }

  .showcase-content .section-cta {
    margin-top: 18px;
  }

  .showcase-content .section-cta .btn {
    width: 100%;
  }

  .trust-strip {
    padding: 18px 0;
  }

  .trust-strip-inner {
    padding: 18px;
    border-radius: 22px;
  }

  .trust-strip-title {
    font-size: 21px;
  }

  .trust-strip-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .trust-item {
    padding: 10px 12px;
    border-radius: 16px;
  }

  .trust-kpi {
    font-size: 15px;
  }

  .trust-label {
    margin-top: 3px;
    font-size: 12px;
  }

  .process-section {
    padding: 42px 0;
  }

  .process-head {
    margin-bottom: 20px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-step {
    min-height: auto;
    padding: 20px;
    border-radius: 22px;
  }

  .step-number {
    margin-bottom: 14px;
    font-size: 34px;
  }

  .step-title {
    font-size: 17px;
  }

  .gallery-img {
    height: 210px;
  }

  .cta-banner {
    padding: 20px;
  }
}

/* Menus (cards + price) */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.menu-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .02);
  display: grid;
  gap: 10px;
}

.menu-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.menu-title {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
}

.menu-price {
  font-weight: 900;
  color: var(--gold-dark);
  white-space: nowrap;
}

.menu-desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.menu-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.6;
}

.menu-list li {
  margin: 4px 0;
}

.menu-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  border-left: 3px solid var(--gold-soft-border);
  padding-left: 10px;
}

/* Prestations page blocks */
.block-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.block {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, .14);
  border-radius: var(--radius);
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .88)),
    radial-gradient(circle at 0 0, rgba(201, 162, 39, .12), transparent 32%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}

.block::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  opacity: .85;
}

.block:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, .34);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .10);
}

.block-title {
  margin: 0;
  font-size: 17px;
  font-weight: 900;
  color: var(--text);
}

.block-text {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.block-points {
  margin: 12px 0 0;
  padding-left: 18px;
  line-height: 1.7;
}

/* Contact layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  align-items: start;
}

.contact-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--white);
}

.contact-actions {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-page {
  background:
    radial-gradient(circle at 12% 12%, rgba(201, 162, 39, .10), transparent 32%),
    var(--cream);
}

.contact-title {
  margin-top: 14px;
}

.contact-lead {
  max-width: 760px;
}

.contact-card-main {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .90)),
    radial-gradient(circle at 0 0, rgba(201, 162, 39, .12), transparent 34%);
  box-shadow: var(--shadow);
}

.contact-checklist {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.7;
}

.contact-card-info {
  align-self: stretch;
}

.contact-info-note {
  margin: 16px 0 0;
  border-left: 3px solid var(--gold);
  padding-left: 12px;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 980px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }

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

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

/* Galerie images (vraies photos) */

.gallery-link {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .02);
  background: #f6f6f6;
  transform: translateZ(0);
}

.gallery-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  transition: transform .25s ease;
}

.gallery-link:hover .gallery-img {
  transform: scale(1.03);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 999;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-inner {
  width: min(980px, 100%);
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
  background: #000;
  position: relative;
}

.lightbox-img {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(0, 0, 0, .35);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

/* Galerie masonry (Pinterest) */
.gallery-masonry {
  column-count: 3;
  column-gap: 12px;
}

.gallery-masonry .gallery-link {
  display: inline-block;
  width: 100%;
  margin: 0 0 12px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .02);
  background: #f6f6f6;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}

.gallery-masonry .gallery-img {
  width: 100%;
  height: auto;
  /* important : hauteur naturelle */
  object-fit: cover;
  display: block;
  transition: transform .25s ease;
}

.gallery-masonry .gallery-link:hover .gallery-img {
  transform: scale(1.03);
}

@media (max-width: 980px) {
  .gallery-masonry {
    column-count: 2;
  }

  .gallery-img {
    height: 170px;
  }
}

@media (max-width: 520px) {
  .gallery-masonry {
    column-count: 1;
  }

  .gallery-img {
    height: 220px;
  }
}

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

@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.mt-sm {
  margin-top: 16px;
}

.mt-md {
  margin-top: 18px;
}

.mt-lg {
  margin-top: 26px;
}

.mt-xl {
  margin-top: 28px;
}

.section-title-small {
  font-size: 22px;
  margin: 0;
}

.reset-container {
  width: 100%;
  margin: 0;
}

.soft-card-section {
  margin-top: 28px;
  border-radius: 24px;
}

.mt-xs {
  margin-top: 8px;
}

.heading-reset {
  margin: 0 0 10px;
}

/* Sticky WhatsApp mobile */

.mobile-whatsapp-sticky {
  display: none;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition:
    opacity .25s ease,
    transform .25s ease;
}

@media (max-width: 520px) {
  .mobile-whatsapp-sticky.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-whatsapp-sticky {
    position: fixed;
    right: 16px;
    bottom: 18px;
    z-index: 80;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    width: auto;
    max-width: calc(100% - 32px);

    padding: 11px 16px;
    border-radius: 999px;

    background: #25D366;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;

    box-shadow: 0 12px 34px rgba(0, 0, 0, .20);
  }

  .mobile-whatsapp-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex: 0 0 auto;
  }

  body {
    padding-bottom: 62px;
  }
}

/* Améliorations v1.1 : lisibilité, SEO visuel, responsive et images optimisées */
.hero {
  background-position: center 48%;
}

.hero-title {
  text-wrap: balance;
}

.hero-lead,
.section-subtitle,
.page-lead,
.step-text,
.block-text,
.menu-desc {
  text-wrap: pretty;
}

.badge-light {
  background: rgba(201, 162, 39, .12);
  border-color: rgba(201, 162, 39, .28);
  color: var(--gold-dark);
  box-shadow: none;
  backdrop-filter: none;
}

.page-title {
  max-width: 860px;
  text-wrap: balance;
}

.page-lead {
  max-width: 840px;
}

.section-head {
  max-width: 840px;
}

.gallery-link {
  background: linear-gradient(135deg, rgba(201, 162, 39, .08), rgba(255, 255, 255, .75));
}

.gallery-img {
  background: var(--surface-alt);
}

.contact-card,
.menu-card,
.block,
.process-step,
.cta-banner,
.trust-strip-inner {
  border-color: rgba(201, 162, 39, .22);
}

.menu-card,
.contact-card,
.block {
  box-shadow: 0 12px 34px rgba(0, 0, 0, .045);
}

.nav-link:focus-visible,
.btn:focus-visible,
.nav-toggle:focus-visible,
.gallery-link:focus-visible,
.mobile-whatsapp-sticky:focus-visible,
.lightbox-close:focus-visible {
  outline: 3px solid rgba(201, 162, 39, .55);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .site-header {
    background: rgba(251, 247, 241, .96);
  }

  .brand-subtitle {
    max-width: 240px;
  }

  .nav {
    z-index: 90;
  }

  .hero {
    min-height: 640px;
    padding-top: 92px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand-subtitle {
    display: none;
  }

  .hero {
    min-height: 660px;
    padding-top: 84px;
  }

  .badge {
    font-size: 12px;
    line-height: 1.25;
  }

  .contact-actions,
  .section-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-actions .btn,
  .section-cta .btn {
    width: 100%;
  }

  .gallery-masonry .gallery-img {
    width: 100%;
  }
}

/* Améliorations v1.2 : avis Mariages.net et emplacements vidéo */
.reviews-section {
  background:
    radial-gradient(circle at 10% 12%, rgba(201, 162, 39, .16), transparent 32%),
    linear-gradient(180deg, #fffaf0 0%, var(--cream) 100%);
}

.reviews-inner {
  border: 1px solid rgba(201, 162, 39, .20);
  border-radius: 30px;
  background: rgba(255, 255, 255, .70);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .07);
  padding: 26px;
}

.reviews-head {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 300px);
  gap: 22px;
  align-items: center;
  margin-bottom: 20px;
}

.reviews-kicker,
.video-kicker {
  margin: 0 0 8px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.reviews-score {
  display: flex;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(201, 162, 39, .28);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(248, 242, 222, .90));
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
  transition:
    transform .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}

.reviews-score:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 162, 39, .48);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .09);
}

.reviews-score-rating {
  color: var(--gold-dark);
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
}

.reviews-score-platform {
  color: var(--text);
  font-weight: 900;
}

.reviews-score-meta {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

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

.review-card {
  border: 1px solid rgba(201, 162, 39, .16);
  border-radius: 22px;
  background: rgba(255, 255, 255, .86);
  padding: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .045);
}

.review-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.review-rating {
  color: var(--gold-dark);
  font-weight: 950;
}

.review-source {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.review-text {
  margin: 0;
  color: var(--text);
  line-height: 1.65;
  text-wrap: pretty;
}

.review-author {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.video-section {
  background: var(--surface-alt);
}

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

.video-card {
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, .18);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .055);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card-body {
  padding: 16px;
}

.video-title {
  margin: 0;
  font-size: 17px;
}

.video-platform {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.video-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold-dark);
  font-weight: 900;
}

.video-link:hover {
  text-decoration: underline;
}

.reviews-score:focus-visible,
.video-link:focus-visible {
  outline: 3px solid rgba(201, 162, 39, .55);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .reviews-head,
  .reviews-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .reviews-score {
    max-width: 360px;
  }
}

@media (max-width: 520px) {
  .reviews-inner {
    padding: 18px;
    border-radius: 24px;
  }

  .reviews-score {
    max-width: none;
  }

  .reviews-score-rating {
    font-size: 30px;
  }
}

/* Améliorations v1.3 : direction artistique luxe oriental moderne */
:root {
  --deep-black: #080706;
  --warm-black: #15100C;
  --sand: #EFE3C8;
  --sand-light: #FFF8EB;
  --copper: #8D5D2D;
  --premium-shadow: 0 24px 70px rgba(0, 0, 0, .16);
}

body {
  background:
    radial-gradient(circle at 8% 0%, rgba(201, 162, 39, .10), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(141, 93, 45, .08), transparent 28%),
    var(--cream);
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.section-head-centered {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-cta-centered {
  justify-content: center;
}

.btn-ghost-dark {
  background: rgba(255, 255, 255, .70);
  border-color: rgba(201, 162, 39, .34);
  color: var(--text);
}

.btn-ghost-dark:hover {
  border-color: rgba(201, 162, 39, .62);
  background: rgba(255, 255, 255, .92);
}

.page-home .site-main {
  overflow: hidden;
}

.hero-premium {
  min-height: 780px;
  padding: 164px 0 96px;
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 162, 39, .25), transparent 30%),
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, .10), transparent 22%),
    linear-gradient(115deg, rgba(8, 7, 6, .94) 0%, rgba(21, 16, 12, .74) 48%, rgba(21, 16, 12, .25) 100%),
    url("/assets/img/galerie_web/g01.webp");
  background-size: cover;
  background-position: center;
}

.hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .18), transparent 28%, rgba(0, 0, 0, .30)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 14px);
  opacity: .55;
}

.hero-premium .hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  gap: 54px;
  align-items: center;
}

.hero-premium .hero-content {
  max-width: 690px;
}

.hero-premium .badge {
  color: rgba(255, 255, 255, .92);
  border-color: rgba(231, 217, 168, .34);
  background: rgba(255, 255, 255, .10);
}

.hero-premium .hero-title {
  max-width: 780px;
  font-size: clamp(44px, 5.3vw, 78px);
  line-height: .93;
  letter-spacing: -1.5px;
  text-shadow: 0 16px 54px rgba(0, 0, 0, .36);
}

.hero-premium .hero-lead {
  max-width: 650px;
  color: rgba(255, 255, 255, .84);
  font-size: 18px;
  line-height: 1.75;
}

.hero-premium .hero-actions {
  margin-top: 28px;
}

.hero-premium .hero-trust {
  max-width: 720px;
  margin-top: 30px;
}

.hero-premium .trust-item {
  border-color: rgba(231, 217, 168, .24);
  background: rgba(255, 255, 255, .09);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-photo-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(231, 217, 168, .36);
  border-radius: 34px;
  background: rgba(255, 255, 255, .08);
  box-shadow: var(--premium-shadow);
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-card-main {
  inset: 0 72px 28px 34px;
}

.hero-photo-card-main::after,
.hero-photo-card-small::after,
.page-hero-photo::after,
.signature-mosaic::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 24px;
  pointer-events: none;
}

.hero-photo-card-small {
  width: 176px;
  height: 220px;
  border-radius: 26px;
}

.hero-photo-card-top {
  top: 36px;
  right: 0;
}

.hero-photo-card-bottom {
  right: 18px;
  bottom: 0;
  width: 218px;
  height: 168px;
}

.hero-review-badge {
  position: absolute;
  left: 0;
  bottom: 78px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 176px;
  padding: 16px 18px;
  border: 1px solid rgba(231, 217, 168, .42);
  border-radius: 24px;
  background: rgba(255, 255, 255, .92);
  color: var(--text);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .22);
  backdrop-filter: blur(16px);
  transition: transform .22s ease, box-shadow .22s ease;
}

.hero-review-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .28);
}

.hero-review-note {
  color: var(--gold-dark);
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
}

.hero-review-label {
  font-weight: 900;
}

.hero-review-count {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.trust-strip {
  margin-top: -58px;
  padding-bottom: 48px;
}

.trust-strip-inner {
  padding: 28px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(255, 248, 235, .88)),
    radial-gradient(circle at 12% 0%, rgba(201, 162, 39, .18), transparent 34%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .14);
}

.signature-section {
  position: relative;
  padding: 74px 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(201, 162, 39, .14), transparent 28%),
    linear-gradient(180deg, var(--cream) 0%, #fffaf0 100%);
}

.signature-grid {
  width: min(1240px, calc(100% - 32px));
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 52px;
  align-items: center;
}

.signature-title {
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 1.02;
  letter-spacing: -.9px;
}

.signature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.signature-list span {
  display: inline-flex;
  padding: 9px 13px;
  border: 1px solid rgba(201, 162, 39, .25);
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
  color: var(--text);
  font-size: 14px;
  font-weight: 850;
}

.signature-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-auto-rows: 180px;
  gap: 14px;
}

.signature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid rgba(201, 162, 39, .24);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .10);
}

.signature-img-large {
  grid-row: span 2;
}

.signature-img-wide {
  grid-column: span 2;
}

.event-types-section {
  padding: 72px 0;
  background:
    linear-gradient(180deg, var(--warm-black) 0%, var(--deep-black) 100%);
  color: var(--white);
}

.event-types-section .section-title,
.event-types-section .event-card h3 {
  color: var(--white);
}

.event-types-section .section-subtitle {
  color: rgba(255, 255, 255, .72);
}

.event-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.event-card {
  overflow: hidden;
  border: 1px solid rgba(231, 217, 168, .20);
  border-radius: 30px;
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.event-card:hover {
  transform: translateY(-6px);
  border-color: rgba(231, 217, 168, .42);
  background: rgba(255, 255, 255, .09);
}

.event-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.event-card-body {
  padding: 20px;
}

.event-card-kicker {
  margin: 0 0 8px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.event-card h3 {
  margin: 0;
  font-size: 21px;
}

.event-card p:not(.event-card-kicker) {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.6;
}

.process-section {
  padding: 70px 0;
}

.reviews-section {
  padding: 76px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(201, 162, 39, .18), transparent 30%),
    linear-gradient(180deg, #fffaf0 0%, var(--cream) 100%);
}

.reviews-inner {
  padding: 34px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(255, 248, 235, .82));
  box-shadow: 0 28px 80px rgba(0, 0, 0, .11);
}

.review-card {
  display: block;
  color: inherit;
  border-radius: 26px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 162, 39, .38);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .10);
}

.gallery-preview-section {
  padding: 74px 0;
  background:
    radial-gradient(circle at 88% 24%, rgba(201, 162, 39, .12), transparent 28%),
    var(--cream);
}

.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 190px;
  gap: 14px;
}

.home-gallery-link {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, .20);
  border-radius: 28px;
  background: #f6f1e5;
  box-shadow: 0 16px 46px rgba(0, 0, 0, .08);
}

.home-gallery-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, .22));
  opacity: .7;
  transition: opacity .22s ease;
}

.home-gallery-link:hover::after {
  opacity: .38;
}

.home-gallery-link .gallery-img {
  height: 100%;
}

.home-gallery-link-1,
.home-gallery-link-6 {
  grid-column: span 3;
  grid-row: span 2;
}

.home-gallery-link-2,
.home-gallery-link-3,
.home-gallery-link-4,
.home-gallery-link-5 {
  grid-column: span 3;
}

.cta-banner-premium {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(21, 16, 12, .96), rgba(8, 7, 6, .92)),
    radial-gradient(circle at 10% 0%, rgba(201, 162, 39, .32), transparent 38%);
  color: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
}

.cta-banner-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 88% 50%, rgba(201, 162, 39, .18), transparent 28%);
  pointer-events: none;
}

.cta-banner-premium > * {
  position: relative;
  z-index: 1;
}

.cta-banner-premium .cta-text {
  color: rgba(255, 255, 255, .74);
}

.cta-kicker {
  color: var(--gold-light);
}

/* Pages internes avec visuel */
.page-hero-section {
  padding: 64px 0 44px;
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 162, 39, .13), transparent 30%),
    linear-gradient(180deg, #fffaf0 0%, var(--cream) 100%);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .75fr);
  gap: 38px;
  align-items: center;
}

.page-hero-photo {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border: 1px solid rgba(201, 162, 39, .24);
  border-radius: 32px;
  box-shadow: 0 22px 65px rgba(0, 0, 0, .13);
}

.page-hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.services-visual-section,
.menus-content-section {
  padding-top: 54px;
}

.service-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.service-visual-card {
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, .18);
  border-radius: 30px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .075);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-visual-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 162, 39, .36);
  box-shadow: 0 22px 65px rgba(0, 0, 0, .11);
}

.service-visual-media {
  height: 240px;
  overflow: hidden;
}

.service-visual-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}

.service-visual-card:hover .service-visual-media img {
  transform: scale(1.04);
}

.service-visual-body {
  padding: 20px;
}

.service-visual-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.service-visual-text {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.service-visual-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.7;
}

.menu-card {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .07);
}

.menu-card::before {
  content: "";
  display: block;
  height: 4px;
  margin: -16px -16px 12px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

@media (max-width: 980px) {
  .hero-premium {
    min-height: auto;
    padding: 116px 0 58px;
  }

  .hero-premium .hero-inner,
  .signature-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
    max-width: 620px;
  }

  .event-card-grid,
  .service-visual-grid {
    grid-template-columns: 1fr;
  }

  .event-card img,
  .service-visual-media {
    height: 260px;
  }

  .home-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .home-gallery-link-1,
  .home-gallery-link-6,
  .home-gallery-link-2,
  .home-gallery-link-3,
  .home-gallery-link-4,
  .home-gallery-link-5 {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 520px) {
  .hero-premium {
    min-height: auto;
    padding: 98px 0 40px;
  }

  .hero-premium .hero-title {
    font-size: clamp(34px, 11vw, 46px);
    line-height: .98;
  }

  .hero-premium .hero-lead {
    font-size: 16px;
  }

  .hero-premium .hero-trust {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 360px;
    margin-top: 8px;
  }

  .hero-photo-card-main {
    inset: 0 42px 36px 0;
  }

  .hero-photo-card-top {
    width: 132px;
    height: 170px;
    top: 24px;
  }

  .hero-photo-card-bottom {
    width: 158px;
    height: 126px;
    right: 8px;
  }

  .hero-review-badge {
    left: 0;
    bottom: 18px;
    min-width: 148px;
    padding: 13px 14px;
  }

  .hero-review-note {
    font-size: 28px;
  }

  .trust-strip {
    margin-top: 0;
    padding: 18px 0 34px;
  }

  .signature-section,
  .event-types-section,
  .reviews-section,
  .gallery-preview-section {
    padding: 46px 0;
  }

  .signature-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .signature-img-large,
  .signature-img-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .event-card img,
  .service-visual-media {
    height: 220px;
  }

  .home-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .reviews-inner,
  .cta-banner-premium {
    padding: 20px;
    border-radius: 26px;
  }

  .page-hero-section {
    padding: 38px 0 34px;
  }

  .page-hero-photo,
  .page-hero-photo img {
    min-height: 240px;
  }
}

/* Améliorations v1.4 : accueil plus visuel, hero simplifié, preuves plus premium */
.hero-v14 {
  isolation: isolate;
  min-height: 760px;
  padding: 154px 0 78px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(201, 162, 39, .24), transparent 30%),
    radial-gradient(circle at 86% 82%, rgba(231, 217, 168, .14), transparent 34%),
    linear-gradient(135deg, #15100c 0%, #090807 52%, #1c120b 100%);
  color: var(--white);
}

.hero-v14::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .18)),
    url("/assets/img/design/buffet-close-v14.webp");
  background-size: cover;
  background-position: center;
  opacity: .18;
  filter: saturate(.95) contrast(1.05);
}

.hero-v14::after {
  content: "";
  position: absolute;
  inset: 22px;
  z-index: -1;
  border: 1px solid rgba(231, 217, 168, .13);
  border-radius: 34px;
  pointer-events: none;
}

.hero-v14-inner {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, .86fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.hero-v14-content {
  max-width: 670px;
}

.hero-v14-badge {
  background: rgba(255, 255, 255, .10);
  border-color: rgba(231, 217, 168, .28);
  color: rgba(255, 255, 255, .90);
}

.hero-v14-title {
  margin-top: 18px;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(46px, 5.6vw, 82px);
  line-height: .94;
  letter-spacing: -.045em;
  text-shadow: 0 18px 60px rgba(0, 0, 0, .34);
}

.hero-v14-lead {
  max-width: 600px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .80);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.65;
}

.hero-v14-actions {
  margin-top: 30px;
}

.hero-v14-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-v14-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(231, 217, 168, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .84);
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.hero-v14-media {
  position: relative;
  min-height: 560px;
}

.hero-v14-frame {
  position: absolute;
  inset: 0 0 38px 0;
  overflow: hidden;
  border: 1px solid rgba(231, 217, 168, .36);
  border-radius: 42px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 34px 95px rgba(0, 0, 0, .36);
  transform: rotate(1.1deg);
}

.hero-v14-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 30px;
  pointer-events: none;
}

.hero-v14-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .22));
  pointer-events: none;
}

.hero-v14-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01) rotate(-1.1deg);
}

.hero-v14-score {
  position: absolute;
  left: -22px;
  bottom: 0;
  z-index: 4;
  display: grid;
  gap: 4px;
  width: min(300px, 82%);
  padding: 18px 20px;
  border: 1px solid rgba(201, 162, 39, .30);
  border-radius: 26px;
  background: rgba(255, 250, 240, .94);
  color: var(--text);
  box-shadow: 0 22px 65px rgba(0, 0, 0, .28);
  backdrop-filter: blur(18px);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.hero-v14-score:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, .50);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .34);
}

.hero-v14-score-note {
  color: var(--gold-dark);
  font-size: 42px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.04em;
}

.hero-v14-score-label {
  font-weight: 950;
}

.hero-v14-score-meta {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.home-proof-section {
  position: relative;
  z-index: 8;
  margin-top: -52px;
  padding: 0 0 54px;
  background: var(--cream);
}

.home-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: min(1180px, calc(100% - 32px));
}

.home-proof-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  min-height: 126px;
  padding: 20px;
  border: 1px solid rgba(201, 162, 39, .18);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 248, 235, .88)),
    radial-gradient(circle at 0% 0%, rgba(201, 162, 39, .14), transparent 36%);
  box-shadow: 0 22px 62px rgba(0, 0, 0, .10);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.home-proof-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  opacity: .82;
}

.home-proof-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, .35);
  box-shadow: 0 28px 74px rgba(0, 0, 0, .13);
}

.home-proof-card-main {
  background:
    linear-gradient(135deg, rgba(25, 18, 12, .96), rgba(12, 10, 9, .94)),
    radial-gradient(circle at 0% 0%, rgba(201, 162, 39, .26), transparent 40%);
  color: var(--white);
}

.home-proof-value {
  display: block;
  color: var(--gold-dark);
  font-size: clamp(26px, 2.6vw, 40px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.04em;
}

.home-proof-card-main .home-proof-value {
  color: var(--gold-light);
}

.home-proof-label {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
}

.home-proof-card-main .home-proof-label {
  color: rgba(255, 255, 255, .74);
}

.home-visual-section {
  padding: 76px 0 68px;
  background:
    radial-gradient(circle at 12% 20%, rgba(201, 162, 39, .13), transparent 32%),
    linear-gradient(180deg, var(--cream) 0%, #fffaf0 100%);
}

.home-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.05fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
  width: min(1240px, calc(100% - 32px));
}

.home-visual-title {
  max-width: 620px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.home-visual-text {
  max-width: 620px;
  font-size: 17px;
}

.home-visual-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.home-visual-tags span {
  padding: 9px 13px;
  border: 1px solid rgba(201, 162, 39, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
  color: var(--text);
  font-size: 14px;
  font-weight: 850;
}

.home-visual-collage {
  display: grid;
  grid-template-columns: 1.05fr .85fr;
  grid-template-rows: 230px 230px;
  gap: 14px;
}

.home-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(201, 162, 39, .22);
  border-radius: 28px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, .10);
}

.home-visual-img-large {
  grid-row: 1 / span 2;
  border-radius: 36px;
}

.event-types-section {
  padding: 78px 0 82px;
}

.event-types-section .section-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3.6vw, 54px);
  line-height: 1.04;
  letter-spacing: -.04em;
}

.event-card {
  border-radius: 34px;
}

.event-card img {
  height: 310px;
}

.event-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  letter-spacing: -.02em;
}

.gallery-preview-section .section-title,
.reviews-section .section-title,
.cta-title {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.035em;
}

@media (max-width: 980px) {
  .hero-v14 {
    min-height: auto;
    padding: 118px 0 58px;
  }

  .hero-v14::after {
    inset: 12px;
    border-radius: 26px;
  }

  .hero-v14-inner,
  .home-visual-grid {
    grid-template-columns: 1fr;
  }

  .hero-v14-media {
    min-height: 500px;
    max-width: 680px;
  }

  .home-proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-proof-section {
    margin-top: 0;
    padding-top: 26px;
  }

  .home-visual-collage {
    grid-template-rows: 220px 220px;
  }
}

@media (max-width: 620px) {
  .hero-v14 {
    padding: 98px 0 42px;
  }

  .hero-v14-title {
    font-size: clamp(37px, 12vw, 52px);
    line-height: .98;
  }

  .hero-v14-lead {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-v14-actions .btn,
  .hero-v14-actions {
    width: 100%;
  }

  .hero-v14-media {
    min-height: 390px;
  }

  .hero-v14-frame {
    inset: 0 0 54px 0;
    border-radius: 30px;
    transform: none;
  }

  .hero-v14-frame img {
    transform: none;
  }

  .hero-v14-score {
    left: 12px;
    bottom: 0;
    width: calc(100% - 24px);
    padding: 15px 16px;
    border-radius: 22px;
  }

  .hero-v14-score-note {
    font-size: 34px;
  }

  .hero-v14-chips {
    gap: 8px;
  }

  .hero-v14-chips span {
    min-height: 34px;
    font-size: 13px;
  }

  .home-proof-grid {
    grid-template-columns: 1fr;
  }

  .home-proof-card {
    min-height: 100px;
  }

  .home-visual-section {
    padding: 48px 0;
  }

  .home-visual-collage {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 220px);
  }

  .home-visual-img-large {
    grid-row: auto;
  }

  .event-card img {
    height: 235px;
  }
}
