: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/g01.jpg");
  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/g01.jpg");
  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/g01.jpg");
    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;
  }
}