    :root {
      --navy: #001b33;
      --navy-2: #062641;
      --navy-3: #0b314f;
      --ink: #162033;
      --muted: #617083;
      --gold: #c89b55;
      --gold-2: #d8b46e;
      --ivory: #fbf8f1;
      --sand: #eee5d8;
      --line: #e5dccf;
      --white: #ffffff;
      --shadow: 0 22px 70px rgba(0, 27, 51, .12);
      --soft-shadow: 0 14px 40px rgba(0, 27, 51, .08);
      --container: 1180px;
      --serif: "Playfair Display", Georgia, serif;
      --sans: "Inter", Arial, sans-serif;
    }

    .mmm-exp * { box-sizing: border-box; }
    .mmm-exp {
      font-family: var(--sans);
      color: var(--ink);
      background: var(--ivory);
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      scroll-behavior: smooth;
    }

    .mmm-exp img { display: block; max-width: 100%; }
    .mmm-exp a { color: inherit; text-decoration: none; }
    .mmm-exp button, .mmm-exp input, .mmm-exp select, .mmm-exp textarea { font: inherit; }
    .mmm-exp input, .mmm-exp select, .mmm-exp textarea { width: 100%; }

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

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: var(--navy);
      color: var(--white);
      border-bottom: 1px solid rgba(216, 180, 110, .25);
    }

    .nav {
      height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }

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

    .brand-mark {
      width: 44px;
      height: 44px;
      border: 1px solid rgba(216, 180, 110, .7);
      color: var(--gold-2);
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 24px;
      line-height: 1;
    }

    .brand-name {
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .08em;
      line-height: 1.08;
      font-size: 15px;
    }

    .menu {
      display: flex;
      align-items: center;
      gap: 27px;
      font-size: 13px;
      font-weight: 700;
    }

    .menu a {
      padding: 30px 0;
      color: rgba(255,255,255,.90);
      position: relative;
    }

    .menu a:hover,
    .menu a.is-active { color: var(--gold-2); }

    .menu a.is-active::after,
    .menu a:hover::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 19px;
      height: 2px;
      background: var(--gold);
    }

    .lang {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 800;
      color: rgba(255,255,255,.88);
    }

    .mobile-toggle { display: none; }

    .hero {
      position: relative;
      overflow: hidden;
      color: var(--white);
      background:
        linear-gradient(90deg, rgba(0, 27, 51, .88) 0%, rgba(0, 27, 51, .70) 42%, rgba(0, 27, 51, .22) 74%, rgba(0, 27, 51, .10) 100%),
        url("../img/experiences/hero-experiences-nautiques-maurice.jpg") center / cover no-repeat;
    }

    .hero-inner {
      min-height: 600px;
      display: grid;
      align-items: center;
      padding: 78px 0;
    }

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

    .overline {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--gold-2);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .overline::after {
      content: "";
      width: 42px;
      height: 2px;
      background: var(--gold);
    }

    h1, h2, h3 { margin: 0; }

    h1 {
      font-family: var(--serif);
      font-size: clamp(46px, 5.4vw, 76px);
      line-height: 1.02;
      letter-spacing: -.035em;
      font-weight: 600;
      max-width: 760px;
    }

    .hero-text {
      margin: 24px 0 0;
      max-width: 585px;
      color: rgba(255,255,255,.92);
      font-size: 18px;
      line-height: 1.7;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 34px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 0 24px;
      border: 1px solid transparent;
      border-radius: 3px;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .06em;
      cursor: pointer;
      transition: transform .18s ease, background .18s ease, border .18s ease;
    }

    .btn:hover { transform: translateY(-1px); }
    .btn-gold { background: var(--gold); color: var(--white); }
    .btn-gold:hover { background: #b68642; }
    .btn-outline-white { border-color: rgba(255,255,255,.72); color: var(--white); background: transparent; }
    .btn-outline-white:hover { background: rgba(255,255,255,.12); }
    .btn-outline { border-color: var(--gold); color: var(--gold); background: transparent; }
    .btn-outline:hover { background: rgba(200,155,85,.08); }

    .trust-bar {
      background: var(--white);
      border-bottom: 1px solid var(--line);
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .trust-item {
      padding: 28px 28px;
      display: flex;
      gap: 14px;
      align-items: center;
      border-right: 1px solid var(--line);
    }

    .trust-item:last-child { border-right: 0; }

    .trust-icon {
      color: var(--gold);
      font-size: 28px;
      flex: 0 0 auto;
    }

    .trust-item strong {
      display: block;
      color: var(--navy);
      font-size: 14px;
      margin-bottom: 4px;
      text-transform: uppercase;
      letter-spacing: .03em;
    }

    .trust-item span {
      display: block;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.45;
    }

    section { padding: 68px 0; }

    .center-head {
      text-align: center;
      max-width: 820px;
      margin: 0 auto 36px;
    }

    .section-kicker {
      display: block;
      color: var(--gold);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    h2 {
      font-family: var(--serif);
      color: var(--navy);
      font-size: clamp(34px, 3.5vw, 52px);
      line-height: 1.1;
      letter-spacing: -.025em;
      font-weight: 600;
    }

    .center-head p {
      margin: 16px auto 0;
      max-width: 720px;
      color: var(--muted);
      line-height: 1.7;
    }

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

    .experience-card {
      min-height: 455px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: end;
      background: var(--navy);
      box-shadow: var(--soft-shadow);
      border: 1px solid rgba(229,220,207,.9);
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .experience-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
    }

    .experience-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,27,51,.02), rgba(0,27,51,.88));
      z-index: 1;
    }

    .experience-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .96;
    }

    .experience-content {
      position: relative;
      z-index: 2;
      color: var(--white);
      padding: 24px;
    }

    .experience-badge {
      position: absolute;
      z-index: 3;
      top: 14px;
      left: 14px;
      background: rgba(251,248,241,.92);
      color: var(--gold);
      padding: 7px 10px;
      font-size: 10px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .07em;
    }

    .experience-content h3 {
      font-family: var(--serif);
      font-size: 29px;
      line-height: 1.05;
      margin-bottom: 10px;
    }

    .experience-content p {
      margin: 0 0 18px;
      color: rgba(255,255,255,.84);
      line-height: 1.55;
      font-size: 14px;
    }

    .card-link {
      color: var(--gold-2);
      font-weight: 800;
      font-size: 12px;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .choice-section {
      background: var(--white);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

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

    .choice-copy p {
      color: var(--muted);
      line-height: 1.75;
      margin: 20px 0 32px;
    }

    .choice-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border: 1px solid var(--line);
      background: var(--ivory);
    }

    .choice-step {
      padding: 24px;
      text-align: center;
      border-right: 1px solid var(--line);
    }

    .choice-step:last-child { border-right: 0; }

    .choice-step-icon {
      color: var(--gold);
      font-size: 34px;
      margin-bottom: 14px;
    }

    .choice-step strong {
      display: block;
      color: var(--navy);
      text-transform: uppercase;
      font-size: 12px;
      letter-spacing: .08em;
      margin-bottom: 8px;
    }

    .choice-step span {
      display: block;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.5;
    }

    .choice-image {
      min-height: 330px;
      background:
        linear-gradient(180deg, rgba(0,27,51,.04), rgba(0,27,51,.18)),
        url("../img/experiences/st-brandon-maurice.jpg") center / cover no-repeat;
      border: 1px solid var(--line);
      box-shadow: var(--soft-shadow);
    }

    .request-section {
      background: var(--navy);
      color: var(--white);
      padding: 58px 0;
    }

    .request-card {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 56px;
      align-items: start;
    }

    .request-copy h2 { color: var(--white); }

    .request-copy p {
      margin: 20px 0 28px;
      color: rgba(255,255,255,.84);
      line-height: 1.75;
    }

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

    .request-list li {
      color: rgba(255,255,255,.86);
      display: flex;
      gap: 10px;
      align-items: center;
      font-size: 14px;
    }

    .request-list li::before {
      content: "✓";
      color: var(--gold-2);
      font-weight: 800;
    }

    .experience-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .field-full { grid-column: 1 / -1; }

    input, select, textarea {
      width: 100%;
      min-height: 48px;
      border: 1px solid rgba(255,255,255,.24);
      background: rgba(255,255,255,.96);
      color: var(--ink);
      padding: 0 14px;
      border-radius: 2px;
      outline: none;
    }

    textarea {
      min-height: 130px;
      padding-top: 13px;
      resize: vertical;
      line-height: 1.5;
    }

    input:focus, select:focus, textarea:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(216,180,110,.16);
    }

    .form-note {
      grid-column: 1 / -1;
      color: rgba(255,255,255,.68);
      font-size: 12px;
      line-height: 1.5;
      margin: 0;
    }

    .experience-form .btn {
      width: max-content;
      border: 0;
    }

    .faq-section { background: var(--ivory); }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px 18px;
    }

    details {
      background: var(--white);
      border: 1px solid var(--line);
    }

    summary {
      list-style: none;
      cursor: pointer;
      padding: 18px 20px;
      font-weight: 700;
      color: var(--navy);
      display: flex;
      justify-content: space-between;
      gap: 18px;
    }

    summary::-webkit-details-marker { display: none; }

    summary::after {
      content: "+";
      color: var(--gold);
      font-size: 22px;
      line-height: 1;
    }

    details[open] summary::after { content: "–"; }

    details p {
      margin: 0;
      padding: 0 20px 18px;
      color: var(--muted);
      line-height: 1.65;
      font-size: 14px;
    }

    .final-cta {
      color: var(--white);
      padding: 70px 0;
      background:
        linear-gradient(90deg, rgba(0,27,51,.91), rgba(0,27,51,.56)),
        url("../img/experiences/sortie-nautique-coucher-soleil-maurice.jpg") center / cover no-repeat;
    }

    .final-cta-grid {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 34px;
    }

    .final-cta h2 {
      color: var(--white);
      max-width: 760px;
    }

    .final-cta p {
      color: rgba(255,255,255,.86);
      line-height: 1.65;
      margin: 14px 0 0;
      max-width: 620px;
    }

    .site-footer {
      background: #001426;
      color: rgba(255,255,255,.76);
      padding: 54px 0 26px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.35fr repeat(4, 1fr);
      gap: 38px;
    }

    .footer-logo {
      color: var(--white);
      font-family: var(--serif);
      font-size: 28px;
      line-height: 1;
      margin-bottom: 14px;
    }

    .footer-col h4 {
      color: var(--gold-2);
      text-transform: uppercase;
      letter-spacing: .12em;
      font-size: 12px;
      margin: 0 0 16px;
    }

    .footer-col a,
    .footer-col span {
      display: block;
      color: rgba(255,255,255,.74);
      font-size: 13px;
      margin-bottom: 10px;
    }

    .footer-bottom {
      margin-top: 36px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,.12);
      display: flex;
      justify-content: space-between;
      gap: 18px;
      font-size: 12px;
      color: rgba(255,255,255,.55);
    }

    @media (max-width: 1150px) {
      .menu, .lang { display: none; }

      .mobile-toggle {
        display: inline-flex;
        background: transparent;
        border: 1px solid rgba(216,180,110,.35);
        color: var(--white);
        padding: 10px 14px;
        font-weight: 800;
        cursor: pointer;
      }

      .trust-grid { grid-template-columns: repeat(2, 1fr); }
      .trust-item:nth-child(2) { border-right: 0; }
      .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

      .experience-grid { grid-template-columns: repeat(2, 1fr); }
      .choice-grid, .request-card { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 760px) {
      .container { width: min(100% - 28px, var(--container)); }
      .nav { height: 68px; }
      .brand { min-width: auto; }
      .brand-mark { width: 38px; height: 38px; }
      .brand-name { font-size: 12px; }

      .hero {
        background:
          linear-gradient(180deg, rgba(0,27,51,.9), rgba(0,27,51,.62), rgba(0,27,51,.20)),
          url("../img/experiences/hero-experiences-nautiques-maurice.jpg") center / cover no-repeat;
      }

      .hero-inner {
        min-height: 620px;
        align-items: end;
        padding: 72px 0 56px;
      }

      h1 { font-size: 42px; }
      .hero-text { font-size: 16px; }

      .hero-actions,
      .final-cta-grid {
        display: block;
      }

      .hero-actions .btn,
      .final-cta .btn {
        width: 100%;
        margin-bottom: 12px;
      }

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

      .trust-item {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      section { padding: 46px 0; }

      .experience-grid,
      .choice-steps,
      .experience-form,
      .faq-grid {
        grid-template-columns: 1fr;
      }

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

      .choice-step {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .choice-image { min-height: 260px; }

      .experience-form .btn { width: 100%; }

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

      .footer-bottom { display: block; }
      .footer-bottom span { display: block; margin-bottom: 10px; }
    }

    /* Message de confirmation d'envoi (formulaire → CRM). */
    .mmm-exp .form-sent {
      grid-column: 1 / -1;
      background: #eef6f0;
      border: 1px solid #bfe0c8;
      color: #14532d;
      border-radius: 4px;
      padding: 14px 16px;
      font-size: 14px;
      margin-bottom: 6px;
    }
    .mmm-exp .experience-form :focus-visible,
    .mmm-exp .btn:focus-visible,
    .mmm-exp a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

    /* Label accessible masqué visuellement (non défini dans la maquette d'origine). */
    .mmm-exp .sr-only {
      position: absolute;
      width: 1px; height: 1px;
      padding: 0; margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

/* Icônes du bandeau de réassurance + section « comment choisir » : vraies
   icônes Material Symbols (fines, dorées) conformes au design de référence,
   au lieu de glyphes unicode. */
.mmm-exp .trust-icon .material-symbols-outlined{ font-size:30px; line-height:1; font-variation-settings:'wght' 300,'opsz' 40,'GRAD' 0; }
.mmm-exp .choice-step-icon .material-symbols-outlined{ font-size:34px; line-height:1; font-variation-settings:'wght' 300,'opsz' 40,'GRAD' 0; }

/* -----------------------------------------------------------------------
   CARTE PLEINE LARGEUR — PÊCHE AU GROS (big game fishing)
   Bandeau sous la grille des cartes : texte à gauche sur dégradé navy,
   photographie dominante à droite. Scopé .mmm-exp, image auto-hébergée.
   ----------------------------------------------------------------------- */
.mmm-exp .big-game-card {
	position: relative;
	min-height: 330px;
	margin-top: 18px;
	overflow: hidden;
	display: flex;
	align-items: center;
	background: var(--navy);
	border: 1px solid rgba(229, 220, 207, .9);
	box-shadow: var(--soft-shadow);
	transition: transform .2s ease, box-shadow .2s ease;
}

.mmm-exp .big-game-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow);
}

.mmm-exp .big-game-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		90deg,
		rgba(0, 27, 51, .98) 0%,
		rgba(0, 27, 51, .92) 31%,
		rgba(0, 27, 51, .56) 54%,
		rgba(0, 27, 51, .08) 100%
	);
}

/* L'image est décalée vers la droite : la tête du marlin sort ainsi de la zone
   sombre du texte et reste bien lisible. La bande libérée à gauche est du navy
   plein, identique au départ du dégradé (opacité .98) — aucune coupure visible. */
.mmm-exp .big-game-card img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 36%;
	right: 0;
	width: auto;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.mmm-exp .big-game-content {
	position: relative;
	z-index: 2;
	width: min(470px, 48%);
	padding: 42px;
	color: var(--white);
}

.mmm-exp .big-game-content .experience-badge {
	position: static;
	display: inline-flex;
	margin-bottom: 20px;
}

.mmm-exp .big-game-content h3 {
	font-family: var(--serif);
	font-size: clamp(34px, 3.4vw, 50px);
	line-height: 1.02;
	margin-bottom: 14px;
	font-weight: 600;
}

.mmm-exp .big-game-content h3::after {
	content: "";
	display: block;
	width: 64px;
	height: 2px;
	margin-top: 16px;
	background: var(--gold);
}

.mmm-exp .big-game-content p {
	max-width: 420px;
	margin: 0 0 22px;
	color: rgba(255, 255, 255, .88);
	font-size: 15px;
	line-height: 1.68;
}

.mmm-exp .big-game-content .card-link {
	color: var(--white);
}

@media (max-width: 1150px) {
	.mmm-exp .big-game-content {
		width: min(540px, 64%);
	}

	/* Carte plus étroite : décalage réduit pour ne pas rogner le rostre. */
	.mmm-exp .big-game-card img {
		left: 30%;
	}
}

@media (max-width: 760px) {
	.mmm-exp .big-game-card {
		min-height: 520px;
		align-items: end;
	}

	.mmm-exp .big-game-card::before {
		background: linear-gradient(
			180deg,
			rgba(0, 27, 51, .06) 0%,
			rgba(0, 27, 51, .48) 42%,
			rgba(0, 27, 51, .97) 78%,
			rgba(0, 27, 51, 1) 100%
		);
	}

	/* Mise en page verticale : l'image reprend toute la largeur et se recadre
	   sur la tête du marlin (le centrage par défaut ne montrait que le dos). */
	.mmm-exp .big-game-card img {
		left: 0;
		width: 100%;
		object-position: 18% center;
	}

	.mmm-exp .big-game-content {
		width: 100%;
		padding: 28px 24px;
	}
}
