﻿/* ===== Source: index.html (style block 1) ===== */
@import url('https://fonts.googleapis.com/css2?family=Aboreto&family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,300&display=swap');

/* ===== Source: index.html (style block 2) ===== */
/* ===== CSS VARIABLES ===== */
    :root {
      --black: #080808;
      --black-soft: #0e0e0e;
      --black-card: #111111;
      --black-border: #1c1c1c;
      --gold: #D07755;
      --gold-light: #D07755;
      --gold-pale: #f5e6c0;
      --orange: #D07755;
      --violet: #6B3FA0;
      --blue: #1A5E8A;
      --jungle: #2f6b43;
      --white: #F5F0E8;
      --white-soft: #c8bfaf;
      --font-display: 'Aboreto', serif;
      --font-body: 'Open Sans', sans-serif;
      --nav-h: 72px;
      --radius: 2px;
      --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      background: var(--black);
      color: var(--white);
      font-family: var(--font-body);
      line-height: 1.7;
      overflow-x: hidden;
    }
    #page-wrap {
      animation: pageIn 0.42s cubic-bezier(0.22, 0.61, 0.36, 1) both;
    }
    @keyframes pageIn {
      from { opacity: 0; filter: blur(14px); }
      to { opacity: 1; filter: none; }
    }
    body.page-exit #page-wrap {
      opacity: 0;
      filter: blur(14px);
      transition: opacity 0.42s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
      pointer-events: none;
    }
    @media (prefers-reduced-motion: reduce) {
      #page-wrap { animation: none; }
      body.page-exit #page-wrap { opacity: 1; filter: none; transition: none; }
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }

    noscript { display: none; }

    /* ===== NAVBAR ===== */
    #navbar {
      position: sticky;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      height: var(--nav-h);
      isolation: isolate;
      background: rgba(8, 8, 8, 0.78);
      backdrop-filter: blur(10px) saturate(110%);
      -webkit-backdrop-filter: blur(10px) saturate(110%);
      box-shadow:  0 4px 14px rgba(0,0,0,0.22);
      display: flex;
      align-items: center;
      padding: 0 40px;
      transition: var(--transition);
    }
    #navbar::before {
      content: '';
      position: absolute;
      inset: 0;
      background: none;
      pointer-events: none;
      z-index: 0;
    }
    #navbar > * {
      position: relative;
      z-index: 1;
    }
    .nav-brand {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }
    .nav-brand img {
      height: calc(42px * 1.1);
      width: auto;
      display: block;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      margin-left: auto;
      list-style: none;
    }
    .nav-links a {
      font-family: var(--font-body);
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--white-soft);
      transition: color 0.2s;
      cursor: pointer;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      margin-left: 32px;
      background: var(--gold);
      color: var(--black) !important;
      font-weight: 700;
      padding: 10px 22px;
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      transition: var(--transition) !important;
      flex-shrink: 0;
    }
    .nav-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }
    .nav-cta-quick {
      display: none;
      border: 1px solid var(--gold);
      color: var(--gold);
      background: transparent;
      padding: 8px 12px;
      font-size: 0.66rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 700;
      line-height: 1;
      transition: var(--transition);
    }
    .nav-cta-quick:hover {
      background: rgba(208,119,85,0.12);
      color: var(--gold-light);
      border-color: var(--gold-light);
    }

    /* hamburger */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      margin-left: auto;
      padding: 6px;
      background: none;
      border: none;
    }
    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--gold);
      transition: var(--transition);
    }
    .mobile-menu {
      display: none;
      position: fixed;
      top: var(--nav-h);
      left: 0; right: 0;
      background: rgba(8, 8, 8, 0.97);
      backdrop-filter: blur(20px);
      padding: 32px 40px;
      flex-direction: column;
      gap: 24px;
      z-index: 999;
      border-top: 1px solid rgba(208,119,85,0.2);
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-size: 0.9rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--white-soft);
      cursor: pointer;
    }
    .mobile-menu a:hover { color: var(--gold); }
    .mobile-menu .nav-cta-mobile {
      display: inline-block;
      background: var(--gold);
      color: var(--black);
      padding: 12px 24px;
      font-weight: 700;
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-align: center;
    }

    /* ===== SECTIONS HELPER ===== */
    section { scroll-margin-top: var(--nav-h); }
    .container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
    .section-label {
      font-family: 'Aboreto';
      font-size: 1.5rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: black;
      margin-bottom: 16px;
    }
    /* Context-aware section-label colors on home page */
    body.page-index #experience .section-label,
    body.page-index #intimite .section-label,
    body.page-index #avis .section-label,
    body.page-index #faq .section-label {
      color: #d07755;
    }
    body.page-index #tarifs .section-label {
      color: #000000;
    }
    body.page-index #rituels .section-label {
      color: #ffffff;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 4vw, 3rem);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      line-height: 1.1;
      color: var(--white);
    }
    .gold-line {
      width: 60px;
      height: 1px;
      background: var(--gold);
      margin: 24px 0;
    }
    .gold-line.centered { margin: 24px auto; }

    /* ===== HERO ===== */
    #accueil {
      position: relative;
      min-height: calc(100vh - var(--nav-h) + 40px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(0,0,0,0.225), rgba(0,0,0,0.225)),
        radial-gradient(ellipse 80% 60% at 60% 40%, rgba(208,119,85,0.08) 0%, transparent 60%),
        url("img/douche_etoile_horizontal.webp") center top/cover no-repeat;
    }
    /* Noise grain overlay */
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
      opacity: 0.4;
      pointer-events: none;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 40px;
      max-width: 1160px;
      margin: 0 auto;
      width: 100%;
      padding-top: 60px;
    }
    .page-index #accueil {
      justify-content: stretch;
    }
    .page-index #accueil .hero-content {
      min-height: calc(100vh - var(--nav-h) + 40px);
      padding-top: calc(var(--nav-h) + 28px);
      padding-bottom: 112px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: clamp(64px, 13vh, 160px);
    }
    .hero-intro,
    .hero-actions {
      width: 100%;
    }
    .hero-location {
      font-size: 0.7rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .hero-location::before {
      content: none;
      width: 32px;
      height: 1px;
      background: var(--gold);
    }
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 6vw, 5.5rem);
      line-height: 1.05;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--white);
      max-width: 680px;
      margin-bottom: 8px;
    }
    .hero-title .gold { color: var(--gold); }
    .hero-subtitle {
      font-family: var(--font-body);
      font-size: clamp(0.85rem, 1.5vw, 1rem);
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--white-soft);
      margin-bottom: 0;
      font-weight: 300;
    }
    .hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 24px;
    }
    .hero-tag {
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid rgba(208,119,85,0.3);
      padding: 6px 14px;
    }
    .hero-price-block {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
      margin-bottom: 40px;
      text-align: left;
    }
    .hero-price {
      font-family: var(--font-display);
      font-size: 2.6rem;
      color: var(--gold);
      letter-spacing: 0.02em;
    }
    .hero-price-label {
      font-size: 0.8rem;
      color: var(--white-soft);
      letter-spacing: 0.1em;
    }
    .hero-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      align-items: center;
      margin-bottom: 0;
    }
    .btn-primary {
      background: var(--gold);
      color: var(--black);
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 16px 36px;
      border: none;
      cursor: pointer;
      transition: var(--transition);
      display: inline-block;
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
    .btn-secondary {
      background: transparent;
      color: var(--white);
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 15px 36px;
      border: 1px solid rgba(255,255,255,0.25);
      cursor: pointer;
      transition: var(--transition);
      display: inline-block;
    }
    .btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
    .hero-trust {
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      color: var(--white-soft);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .hero-trust::before {
      content: '';
      width: 21px;
      height: 21px;
      flex-shrink: 0;
      background: center/contain no-repeat url("picto/terracotta/4641%20-%20Drop.svg");
    }
    .section-cta {
      margin-top: 32px;
      display: inline-block;
    }
    /* Ticker */
    .ticker-wrap {
      position: absolute;
      bottom: 0;
      left: 0; right: 0;
      background: var(--gold);
      padding: 10px 0;
      overflow: hidden;
      z-index: 3;
    }
    .ticker-track {
      display: flex;
      gap: 0;
      animation: ticker 19.5s linear infinite;
      white-space: nowrap;
    }
    .ticker-track span {
      font-size: 0.58rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--black);
      font-weight: 600;
      padding: 0 28px;
    }
    .ticker-track span::after {
      content: '';
      display: inline-block;
      width: 15px;
      height: 15px;
      margin-left: 28px;
      vertical-align: middle;
      background: center/contain no-repeat url("picto/terracotta/4628%20-%20Leaves.svg");
    }
    @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

    /* ===== EXPERIENCE ===== */
    #experience {
      padding: 120px 0;
      background: radial-gradient(140% 85% at 50% 0%, #411F12 0%, #130b08 45%, #080808 100%);
    }
    .experience-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .experience-visual {
      position: relative;
    }
    .exp-mobile-logo {
      display: none !important;
    }
    .experience-visual-box {
      width: 100%;
      aspect-ratio: 4/5;
      background: linear-gradient(135deg, #161616 0%, #0a0a0a 100%);
      border: 1px solid var(--black-border);
      position: relative;
      overflow: hidden;
    }
    .exp-visual-inner {
      position: absolute;
      inset: 0;
    }
    .exp-photo {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      filter: saturate(1.05) contrast(1.02);
    }
    .exp-video {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 148%;
      height: 148%;
      border: 0;
      display: block;
      filter: saturate(1.05) contrast(1.02);
      transform: translate(-50%, -50%);
      pointer-events: auto;
    }
    .exp-video-native {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 148%;
      height: 148%;
      object-fit: cover;
      object-position: center;
      transform: translate(-50%, -50%);
      display: none;
      pointer-events: auto;
    }
    .exp-visual-inner::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 50% 40%, rgba(208,119,85,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(107,63,160,0.10) 0%, transparent 50%),
        linear-gradient(180deg, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.40) 100%);
      pointer-events: none;
    }
    .exp-sound-toggle {
      position: absolute;
      right: 16px;
      top: 16px;
      z-index: 3;
      border: 1px solid rgba(255,255,255,0.45);
      background: rgba(8,8,8,0.62);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 0.62rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      padding: 7px 10px;
      line-height: 1;
      cursor: pointer;
      transition: var(--transition);
    }
    .exp-sound-toggle.is-muted {
      text-decoration: line-through;
      text-decoration-thickness: 2px;
    }
    .exp-sound-toggle:hover {
      border-color: var(--gold);
      color: var(--gold);
      background: rgba(8,8,8,0.75);
    }
    .exp-icon-big {
      font-size: 3rem;
      opacity: 0.6;
    }
    .exp-corner {
      position: absolute;
      font-family: var(--font-display);
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #D07755;
      z-index: 2;
      text-shadow: 0 2px 12px rgba(0,0,0,0.7);
    }
    .exp-corner.tl { top: 20px; left: 20px; }
    .exp-corner.br { bottom: 20px; left: 20px; right: auto; }
    .experience-badge {
      position: absolute;
      bottom: -20px;
      right: -20px;
      width: 90px;
      height: 90px;
      background: var(--gold);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2px;
    }
    .experience-badge .num {
      font-family: var(--font-display);
      font-size: 1.6rem;
      color: var(--black);
      line-height: 1;
    }
    .experience-badge .label {
      font-size: 0.55rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--black);
      font-weight: 700;
      text-align: center;
    }
    .experience-text { padding-top: 20px; }
    .experience-desc {
      font-size: 1.05rem;
      color: var(--white-soft);
      line-height: 1.8;
      margin-bottom: 32px;
      font-weight: 300;
    }

    .seo-intent-section {
      padding: 96px 0;
      background: radial-gradient(140% 85% at 50% 0%, #411F12 0%, #130b08 45%, #080808 100%);
    }
    .seo-intent-section .section-label {
      color: var(--gold);
      padding-top: 50px;
    }
    .seo-intent-text {
      max-width: 980px;
      font-size: 1.02rem;
      color: var(--white-soft);
      line-height: 1.95;
      font-weight: 300;
      margin: 0;
      padding-bottom: 60px;
    }
    .step-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
    .step-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
    }
    .step-num {
      font-family: var(--font-display);
      font-size: 1.6rem;
      color: #D07755;
      line-height: 1;
      min-width: 36px;
      opacity: 0.8;
    }
    .step-text strong {
      display: block;
      font-size: 0.85rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 4px;
    }
    .step-text p {
      font-size: 15px;
      color: var(--white-soft);
      font-weight: 300;
    }

    /* ===== RITUELS ===== */
    #rituels {
      padding: 120px 0;
      position: relative;
      overflow: hidden;
      background: #d07755 url("img/bgterracota.webp") center / cover no-repeat;
    }
    #rituels::before {
      content: "";
      position: absolute;
      top: 0;
      height: min(42vw, 420px);
      background: center top / cover no-repeat url("img/douche_etoile_horizontal.webp");
      -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 40%, transparent 100%);
      mask-image: linear-gradient(to bottom, #000 0%, #000 40%, transparent 100%);
      z-index: 0;
      pointer-events: none;
    }
    #rituels > .container {
      position: relative;
      z-index: 1;
    }
    .rituels-header { text-align: center; margin-bottom: 72px; }
    #rituels .section-title {
      margin-top: -16px;
      color: #ffffff;
      text-shadow: 0 6px 24px rgba(0,0,0,0.55), 0 2px 10px rgba(0,0,0,0.45);
    }
    .rituels-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--black-border);
    }
    .rituel-card {
      background: var(--black-card);
      padding: 48px 32px;
      position: relative;
      overflow: hidden;
      transition: var(--transition);
      cursor: default;
    }
    .rituel-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: var(--gold);
      transform: scaleX(0);
      transition: var(--transition);
    }
    .rituel-card:hover::before { transform: scaleX(1); }
    .rituel-card:hover { background: #131313; }
    .rituel-icon {
      width: 60px;
      height: 60px;
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .rituel-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: sepia(15%) saturate(98%) hue-rotate(352deg);
    }
    .rituel-name {
      font-family: var(--font-display);
      font-size: 0.95rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 16px;
    }
    .rituel-desc {
      font-size: 15px;
      color: var(--white-soft);
      line-height: 1.7;
      font-weight: 300;
      margin-bottom: 24px;
    }
    .rituel-tags {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .rituel-tag {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #ffa150;
      opacity: 0.7;
    }
    .rituel-accent {
      position: absolute;
      top: 20px; right: 20px;
      font-size: 0.6rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      padding: 4px 10px;
      border: 1px solid;
      color: var(--jungle);
      border-color: var(--jungle);
    }
    .accent-orange { color: #16912b; border-color: #16912b; }
    .accent-violet { color: #16912b; border-color: #16912b; }
    .accent-blue { color: #16912b; border-color: #16912b; }
    .accent-gold { color: #16912b; border-color: #16912b; }

    /* ===== INTIMITE ===== */
    #intimite {
      padding: 120px 0;
      background: var(--black-soft);
    }
    .intimite-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .intimite-features { display: flex; flex-direction: column; gap: 32px; }
    .intimite-feat {
      display: flex;
      gap: 24px;
      align-items: flex-start;
      padding-bottom: 32px;
      border-bottom: 1px solid var(--black-border);
    }
    .intimite-feat:last-child { border-bottom: none; padding-bottom: 0; }
    .feat-icon {
      min-width: 51px;
      height: 51px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(208,119,85,0.25);
      color: var(--gold);
      z-index: 2;
      text-shadow: 0 2px 12px rgba(0,0,0,0.7);
    }
    .feat-icon img {
      width: 36px;
      height: 36px;
      object-fit: contain;
    }
    .feat-title {
      font-family: var(--font-body);
      font-size: 0.8rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 8px;
      font-weight: 600;
    }
    .feat-desc {
      font-size: 15px;
      color: var(--white-soft);
      font-weight: 300;
      line-height: 1.7;
    }
    /* Inclus box */
    .inclus-box {
      background: var(--black-card);
      border: 1px solid var(--black-border);
      padding: 0;
      overflow: hidden;
    }
    .inclus-photo {
      width: 100%;
      aspect-ratio: 16 / 10;
      object-fit: cover;
      margin: 0;
      border: 0;
      display: block;
      -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 66%, transparent 100%);
      mask-image: linear-gradient(to bottom, #000 0%, #000 66%, transparent 100%);
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      -webkit-mask-size: 100% 100%;
      mask-size: 100% 100%;
      -webkit-mask-position: top;
      mask-position: top;
    }
    .inclus-content {
      padding: 36px 48px 48px;
    }
    .inclus-title {
      font-family: var(--font-display);
      font-size: 0.85rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 32px;
    }
    .inclus-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .inclus-list li {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 16px;
      color: var(--white-soft);
    }
    .inclus-list li::before {
      content: '';
      width: 16px;
      height: 16px;
      background: center/contain no-repeat url("picto/terracotta/4628%20-%20Leaves.svg");
      flex-shrink: 0;
    }

    /* ===== TARIFS ===== */
    #tarifs {
      padding: 120px 0;
      background: var(--gold);
      position: relative;
      overflow: hidden;
    }
    #tarifs::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      opacity: 0.34;
      background-image:
        repeating-linear-gradient(45deg, rgba(135,64,37,0.44) 0 3px, transparent 3px 24px),
        repeating-linear-gradient(-45deg, rgba(135,64,37,0.44) 0 3px, transparent 3px 24px),
        repeating-linear-gradient(0deg, rgba(135,64,37,0.28) 0 2px, transparent 2px 18px);
      background-size: 48px 48px, 48px 48px, 48px 48px;
      background-position: 0 0, 24px 24px, 0 0;
    }
    #tarifs > .container {
      position: relative;
      z-index: 1;
    }
    .tarifs-header { text-align: center; margin-bottom: 72px; }
    #tarifs .section-label,
    #tarifs .section-title {
      color: var(--black);
    }
    #tarifs .gold-line {
      background: rgba(0,0,0,0.72);
    }
    .tarifs-lead {
      font-size: 15px;
      color: rgba(0,0,0,0.78);
      max-width: 440px;
      margin: 0 auto;
      font-weight: 500;
    }
    .tarifs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.25cm;
      background: rgba(0,0,0,0.0);
      margin-bottom: 60px;
    }
    .tarif-card {
      background: linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.20) 100%);
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 9px;
      padding: 56px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 18px 40px rgba(0,0,0,0.42), inset 0 1px 0 rgba(255,255,255,0.18);
      -webkit-backdrop-filter: blur(6px) saturate(130%);
      backdrop-filter: blur(6px) saturate(130%);
      transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.38s cubic-bezier(0.22, 0.61, 0.36, 1);
    }
    .tarif-card::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
    .tarif-card > * {
      position: relative;
      z-index: 1;
    }
    .tarif-card:hover,
    .tarif-card:focus-within {
      transform: translateY(-4px) scale(1.012);
      border-color: rgba(208,119,85,0.78);
      box-shadow: 0 0 0 1px rgba(208,119,85,0.34), 0 14px 32px rgba(208,119,85,0.30), 0 20px 40px rgba(0,0,0,0.45);
      background: linear-gradient(180deg, rgba(0,0,0,0.37) 0%, rgba(0,0,0,0.30) 100%);
    }
    .tarif-card.featured {
      background: linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.20) 100%);
      border: 1px solid rgba(255,255,255,0.38);
      margin: -1px;
      z-index: 1;
    }
    .tarif-featured-label {
      position: absolute;
      top: -1px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--white);
      color: var(--black);
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-weight: 700;
      padding: 6px 16px;
    }
    .tarif-persons {
      font-size: 0.7rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--black);
      margin-bottom: 24px;
    }
    .tarif-price {
      font-family: var(--font-display);
      font-size: 4rem;
      color: var(--white);
      letter-spacing: 0.02em;
      line-height: 1;
      margin-bottom: 8px;
    }
    .tarif-price sup { font-size: 1.5rem; vertical-align: super; }
    .tarif-duration {
      font-size: 0.75rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(245,240,232,0.9);
      margin-bottom: 32px;
    }
    .tarif-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 36px;
    }
    .tarif-features li {
      font-size: 16px;
      color: rgba(52, 32, 12, 0.92);
      display: flex;
      align-items: center;
      gap: 10px;
      justify-content: center;
    }
    .tarif-features li::before { content: '—'; color: var(--gold-light); opacity: 0.85; }
    #tarifs .tarif-card .tarif-persons,
    #tarifs .tarif-card .tarif-price,
    #tarifs .tarif-card .tarif-duration,
    #tarifs .tarif-card .tarif-features li {
      color: #f5f0e8 !important;
    }
    #tarifs .tarif-card .tarif-features li::before {
      color: var(--gold-light);
      opacity: 0.85;
    }
    .tarif-card.featured .tarif-persons,
    .tarif-card.featured .tarif-price,
    .tarif-card.featured .tarif-duration,
    .tarif-card.featured .tarif-features li {
      color: var(--black);
    }
    .tarif-card.featured .tarif-features li::before {
      color: var(--gold-light);
      opacity: 0.85;
    }
    #tarifs .btn-primary {
      background: var(--black);
      color: var(--gold);
    }
    #tarifs .btn-primary:hover {
      background: #1a1a1a;
      color: var(--gold-light);
    }
    #tarifs .btn-secondary {
      background: var(--black);
      color: var(--gold);
      border-color: var(--black);
    }
    #tarifs .btn-secondary:hover {
      background: #1a1a1a;
      color: var(--gold-light);
      border-color: #1a1a1a;
    }
    /* Horaires */
    .horaires-box {
      max-width: 640px;
      margin: 0 auto;
      text-align: center;
    }
    .horaires-title {
      font-family: var(--font-display);
      font-size: 0.85rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--black);
      margin-bottom: 28px;
    }
    .horaires-grid {
      display: flex;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 16px;
    }
    .horaire-slot {
      background: rgba(245,240,232,0.92);
      border: 1px solid rgba(0,0,0,0.2);
      padding: 10px 18px;
      font-family: var(--font-display);
      font-size: 0.8rem;
      letter-spacing: 0.15em;
      color: var(--black);
      transition: var(--transition);
    }
    .horaire-slot:hover {
      border-color: var(--black);
      background: var(--black);
      color: var(--gold);
      z-index: 2;
      text-shadow: none;
    }
    .horaires-note {
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      color: rgba(0,0,0,0.78);
    }

    /* ===== AVIS ===== */
    #avis {
      padding: 120px 0;
      background: var(--black-soft);
      overflow: hidden;
    }
    .avis-header { text-align: center; margin-bottom: 16px; }
    .stars-row {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      margin-bottom: 60px;
    }
    .stars-row .stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; }
    .stars-row .rating {
      font-family: var(--font-display);
      font-size: 1rem;
      letter-spacing: 0.1em;
      color: var(--gold);
      z-index: 2;
      text-shadow: 0 2px 12px rgba(0,0,0,0.7);
    }
    .stars-row .count {
      font-size: 0.75rem;
      color: var(--white-soft);
      letter-spacing: 0.1em;
    }
    .avis-track-wrap { overflow: hidden; }
    .avis-track {
      display: flex;
      gap: 24px;
      animation: avisScroll 40s linear infinite;
      width: max-content;
    }
    .avis-track:hover { animation-play-state: paused; }
    @keyframes avisScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .avis-card {
      background: var(--black-card);
      border: 1px solid var(--black-border);
      padding: 32px 28px;
      width: 320px;
      flex-shrink: 0;
      position: relative;
    }
    .avis-card::before {
      content: '"';
      position: absolute;
      top: 16px; right: 20px;
      font-family: Georgia, serif;
      font-size: 5rem;
      color: var(--gold);
      opacity: 0.07;
      line-height: 1;
    }
    .avis-stars { color: var(--gold); font-size: 0.75rem; letter-spacing: 3px; margin-bottom: 14px; }
    .avis-text {
      font-size: 16px;
      color: var(--white-soft);
      line-height: 1.7;
      font-weight: 300;
      margin-bottom: 20px;
    }
    .avis-author {
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #D07755;
      opacity: 0.7;
    }

    /* ===== PHOTO SHOWCASE ===== */
    .photo-showcase {
      position: relative;
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      background: #000;
      overflow: hidden;
      line-height: 0;
    }
    .photo-showcase-frame {
      position: relative;
      width: 100%;
      min-height: clamp(360px, 58vw, 760px);
      overflow: hidden;
      background: #000;
    }
    .photo-showcase-track,
    .photo-showcase-slide {
      position: absolute;
      inset: 0;
    }
    .photo-showcase-slide {
      opacity: 0;
      transition: opacity 0.75s ease;
      pointer-events: none;
    }
    .photo-showcase-slide.is-active {
      opacity: 1;
      pointer-events: auto;
    }
    .photo-showcase-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .photo-carousel-arrow {
      position: absolute;
      top: 50%;
      z-index: 4;
      width: 56px;
      height: 56px;
      border: 0;
      background: transparent;
      color: var(--white);
      font-family: var(--font-body);
      font-size: clamp(2.1rem, 4vw, 4rem);
      line-height: 1;
      cursor: pointer;
      transform: translateY(-50%);
      transition: color 0.25s ease, transform 0.25s ease;
    }
    .photo-carousel-arrow:hover {
      color: var(--gold);
      transform: translateY(-50%) scale(1.22);
    }
    .photo-carousel-prev {
      left: clamp(14px, 3vw, 42px);
    }
    .photo-carousel-next {
      right: clamp(14px, 3vw, 42px);
    }
    .photo-carousel-dots {
      position: absolute;
      left: 50%;
      bottom: clamp(18px, 3vw, 34px);
      z-index: 4;
      display: flex;
      gap: 10px;
      transform: translateX(-50%);
      line-height: 1;
    }
    .photo-carousel-dot {
      width: 7px;
      height: 7px;
      border: 0;
      border-radius: 50%;
      background: rgba(245, 240, 232, 0.45);
      cursor: pointer;
      transition: background-color 0.25s ease, transform 0.25s ease;
    }
    .photo-carousel-dot.is-active,
    .photo-carousel-dot:hover {
      background: var(--gold);
      transform: scale(1.35);
    }

    @media (max-width: 768px) {
      .photo-showcase-frame {
        min-height: 72vh;
      }
      .photo-carousel-arrow {
        width: 44px;
        height: 44px;
      }
      .photo-carousel-prev {
        left: 8px;
      }
      .photo-carousel-next {
        right: 8px;
      }
    }

    /* ===== FAQ ===== */
    #faq { padding: 120px 0; }
    .faq-inner {
      max-width: 740px;
      margin: 0 auto;
    }
    .faq-header { text-align: center; margin-bottom: 60px; }
    .faq-item {
      border-bottom: 1px solid var(--black-border);
    }
    .faq-q {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      padding: 24px 0;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }
    .faq-q-text {
      font-family: var(--font-body);
      font-size: 0.9rem;
      letter-spacing: 0.08em;
      color: var(--white);
      font-weight: 400;
    }
    .faq-indicator {
      font-family: var(--font-display);
      font-size: 1.2rem;
      color: var(--gold);
      transition: transform 0.3s;
      flex-shrink: 0;
    }
    .faq-item.open .faq-indicator { transform: rotate(45deg); }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s;
    }
    .faq-item.open .faq-a { max-height: 300px; padding-bottom: 24px; }
    .faq-a p {
      font-size: 16px;
      color: var(--white-soft);
      font-weight: 300;
      line-height: 1.8;
    }

    /* ===== RESERVATION CTA ===== */
    #reservation {
      padding: 140px 0;
      position: relative;
      text-align: center;
      overflow: hidden;
      background: #080808;
    }
#reservation::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      inset-inline: 0;
      height: 100%;
      background: url("img/voyage_immersif_toulouse.webp") center center / cover no-repeat;
      -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0) 100%);
      mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0) 100%);
      z-index: 0;
      pointer-events: none;
    }
    body[class*="page-seo"] #reservation::before {
      top: 50%;
      bottom: auto;
      transform: translateY(-50%);
      background-position: center center;
    }
    .reservation-content { position: relative; z-index: 2; }
    .reservation-ornament {
      font-family: var(--font-display);
      font-size: 0.65rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--gold);
      opacity: 0.5;
      margin-bottom: 32px;
    }
    .reservation-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 5vw, 4.5rem);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #ffffff;
      line-height: 1.1;
      margin-top: -18px;
      margin-bottom: 16px;
      text-shadow: 0 8px 26px rgba(0,0,0,0.55), 0 2px 12px rgba(0,0,0,0.45);
    }
    .reservation-sub {
      font-size: 0.9rem;
      color: #ffffff;
      letter-spacing: 0.12em;
      margin-bottom: 40px;
      font-weight: 300;
      text-shadow: 0 5px 18px rgba(0,0,0,0.5);
    }
    .reservation-price {
      font-family: var(--font-display);
      font-size: 1.5rem;
      color: #ffffff;
      letter-spacing: 0.1em;
      margin-bottom: 48px;
      text-shadow: 0 6px 20px rgba(0,0,0,0.5);
    }
    .reservation-btns {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 28px;
    }
    .reservation-note {
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      color: #ffffff;
      opacity: 0.9;
    }
    #reservation .reservation-btns .btn-secondary {
      color: #ffffff;
      border-color: #ffffff;
      background: rgba(255,255,255,0.14);
    }
    #reservation .reservation-btns .btn-secondary:hover {
      background: #2a1a13;
      color: #f5f0e8;
      border-color: #2a1a13;
    }
    #reservation .pe-booking {
      border: 1px solid var(--gold);
      border-radius: 0;
      box-shadow: none;
    }
    #reservation .pe-booking__summary {
      border: 1px solid rgba(208,119,85,0.45);
      border-radius: 0;
    }
    #reservation .pe-booking__cta {
      border: 2px solid #2a1a13;
    }
    #reservation .pe-booking__cta:hover {
      background: #2a1a13;
      color: #f5f0e8;
      border-color: #2a1a13;
    }

    /* ===== FOOTER ===== */
    footer {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      background: #050505;
      border-top: 1px solid var(--black-border);
      padding: 80px 0 40px;
    }
    footer::before {
      content: "";
      position: absolute;
      inset: 0;
      background: center bottom / cover no-repeat url("img/tulum_toulouse.webp");
      -webkit-mask-image: linear-gradient(to top, #000 0%, #000 22%, rgba(0,0,0,0.55) 35%, transparent 50%, transparent 100%);
      mask-image: linear-gradient(to top, #000 0%, #000 22%, rgba(0,0,0,0.55) 35%, transparent 50%, transparent 100%);
      opacity: 0.55;
      pointer-events: none;
      z-index: 0;
    }
    footer > .container {
      position: relative;
      z-index: 1;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 60px;
      padding-bottom: 44px;
      border-bottom: 1px solid var(--black-border);
      margin-bottom: 28px;
    }
    .footer-brand-name {
      font-family: var(--font-display);
      font-size: 1.1rem;
      letter-spacing: 0.2em;
      color: #D07755;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .footer-tagline {
      font-size: 0.8rem;
      color: var(--white-soft);
      font-weight: 300;
      line-height: 1.7;
      margin-bottom: 24px;
      max-width: 240px;
    }
    .footer-social {
      display: flex;
      gap: 12px;
    }
    .footer-social a {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--white-soft);
      border: 1px solid var(--black-border);
      padding: 8px 14px;
      transition: var(--transition);
    }
    .footer-social a:hover {
      border-color: var(--gold);
      color: var(--gold);
      z-index: 2;
      text-shadow: 0 2px 12px rgba(0,0,0,0.7);
    }
    .footer-col-title {
      font-family: var(--font-display);
      font-size: 0.7rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: #D07755;
      margin-bottom: 20px;
    }
    .footer-nav-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-nav-list a {
      font-size: 0.82rem;
      color: var(--white-soft);
      transition: color 0.2s;
      cursor: pointer;
    }
    .footer-nav-list a:hover { color: var(--gold); }
    .footer-contact-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .footer-contact-list li {
      font-size: 0.82rem;
      color: var(--white-soft);
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .footer-contact-list li span:first-child {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      opacity: 0.7;
    }
    .footer-contact-list a {
      color: var(--white-soft);
      transition: color 0.2s;
    }
    .footer-contact-list a:hover { color: var(--gold); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-copy {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      color: var(--white-soft);
      opacity: 0.4;
    }
    .footer-legal {
      display: flex;
      gap: 24px;
    }
    .footer-legal a {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      color: var(--white-soft);
      opacity: 0.4;
      transition: opacity 0.2s;
    }
    .footer-legal a:hover { opacity: 0.8; }

    /* ===== SCROLL REVEAL ===== */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .rituels-grid { grid-template-columns: repeat(2, 1fr); }
      .tarifs-grid { grid-template-columns: 1fr; }
      .tarif-card.featured { margin: 0; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    }
    @media (max-width: 768px) {
      :root { --nav-h: 72px; }
      #navbar { padding: 0 20px; }
      .ticker-track { animation-duration: 6.5s; }
      .exp-mobile-logo {
        display: block !important;
        width: min(180px, 52vw);
        height: auto;
        margin: -8px auto 20px;
        opacity: 0.95;
      }
      .experience-visual-box {
        width: calc(100% + 40px);
        height: 100vh;
        aspect-ratio: auto;
        margin-left: -20px;
        background: transparent;
        border: 0;
        box-shadow: none;
      }
      .exp-video {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
      .exp-video-native {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
      .exp-visual-inner::after {
        content: none;
      }
      .exp-corner {
        display: none;
      }
      .experience-badge {
        display: none;
      }
      body.page-index #reservation::before {
        top: 0;
        bottom: 0;
        height: 100%;
        background-position: center center;
        background-size: cover;
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
        mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
      }
      body.page-index #reservation::after {
        content: '' !important;
        position: absolute !important;
        inset: 0;
        background: rgba(0,0,0,0.2) !important;
        z-index: 1 !important;
        pointer-events: none !important;
      }
      .hero-bg::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.225);
        pointer-events: none;
      }
      footer::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.40);
        -webkit-mask-image: linear-gradient(to top, #000 0%, #000 22%, rgba(0,0,0,0.55) 35%, transparent 50%, transparent 100%);
        mask-image: linear-gradient(to top, #000 0%, #000 22%, rgba(0,0,0,0.55) 35%, transparent 50%, transparent 100%);
        pointer-events: none;
        z-index: 0;
      }
      .nav-links { display: none; }
      .nav-cta { display: none; }
      .nav-cta-quick { display: inline-block; margin-left: auto; }
      .nav-hamburger { display: flex; }
      .nav-hamburger { margin-left: 10px; }
      .container { padding: 0 20px; }
      .nav-brand img { height: calc(34px * 1.1); }
      .hero-content {
        padding: 0 20px;
        padding-top: calc(var(--nav-h) + 64px);
        text-align: center;
      }
      .page-index #accueil .hero-content {
        padding: calc(var(--nav-h) + 28px) 20px 88px;
        min-height: calc(100svh - var(--nav-h) + 40px);
        gap: clamp(44px, 10vh, 92px);
      }
      .hero-title,
      .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
      }
      .hero-location {
        justify-content: center;
        width: 100%;
      }
      .hero-subtitle {
        font-size: 0.55rem;
      }
      .hero-tags {
        justify-content: center;
      }
      .hero-price-block {
        align-items: center;
        text-align: center;
      }
      .experience-grid { grid-template-columns: 1fr; gap: 40px; }
      .rituels-grid { grid-template-columns: 1fr; }
      .intimite-grid { grid-template-columns: 1fr; gap: 40px; }
      .intimite-grid {
        text-align: center;
      }
      .intimite-grid .gold-line {
        margin-left: auto;
        margin-right: auto;
      }
      .intimite-feat {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
      }
      .inclus-list li {
        justify-content: center;
      }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 22px; padding-bottom: 24px; margin-bottom: 20px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .footer-legal { flex-wrap: wrap; justify-content: center; }
      .hero-btns {
        flex-direction: column;
        align-items: center;
      }
      .hero-btns .btn-secondary {
        font-size: 0.624rem;
        padding: 12px 28px;
      }
    }
    @media (max-width: 520px) {
      .footer-grid { grid-template-columns: 1fr; }
    }

/* ===== Source: reservation.html (style block 1) ===== */
:root {
      --black: #080808;
      --black-soft: #0e0e0e;
      --black-card: #111111;
      --black-border: #1c1c1c;
      --gold: #D07755;
      --gold-light: #D07755;
      --white: #F5F0E8;
      --white-soft: #c8bfaf;
      --font-display: 'Aboreto', serif;
      --font-body: 'Open Sans', sans-serif;
      --nav-h: 72px;
      --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      overflow-x: hidden;
      background: radial-gradient(1200px 700px at 50% 0%, rgba(65,31,18,0.38) 0%, rgba(8,8,8,0.96) 70%),
                  linear-gradient(180deg, #070707 0%, #0a0a0a 100%);
      color: var(--white);
      font-family: var(--font-body);
      line-height: 1.7;
      animation: pageIn 0.42s cubic-bezier(0.22, 0.61, 0.36, 1) both;
    }
    @keyframes pageIn {
      from { opacity: 0; filter: blur(14px); }
      to { opacity: 1; filter: none; }
    }
    body.page-exit {
      animation: none;
      opacity: 0;
      filter: blur(14px);
      transition: opacity 0.42s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
      pointer-events: none;
    }
    @media (prefers-reduced-motion: reduce) {
      body { animation: none; }
      body.page-exit { opacity: 1; filter: none; transition: none; }
    }
    a { color: inherit; text-decoration: none; }

    noscript { display: none; }

    #navbar {
      position: sticky;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      height: var(--nav-h);
      overflow: hidden;
      isolation: isolate;
      background: rgba(8, 8, 8, 0.78);
      backdrop-filter: blur(10px) saturate(110%);
      -webkit-backdrop-filter: blur(10px) saturate(110%);
      box-shadow:  0 4px 14px rgba(0,0,0,0.22);
      display: flex;
      align-items: center;
      padding: 0 40px;
      transition: var(--transition);
    }
    #navbar::before {
      content: "";
      position: absolute;
      inset: 0;
      background: none;
      pointer-events: none;
      z-index: 0;
    }
    #navbar > * {
      position: relative;
      z-index: 1;
    }
    .nav-brand {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }
    .nav-brand img {
      height: calc(42px * 1.1);
      width: auto;
      display: block;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      margin-left: auto;
      list-style: none;
    }
    .nav-links a {
      font-family: var(--font-body);
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--white-soft);
      transition: color 0.2s;
      cursor: pointer;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      margin-left: 32px;
      background: var(--gold);
      color: var(--black) !important;
      font-weight: 700;
      padding: 10px 22px;
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      transition: var(--transition) !important;
      flex-shrink: 0;
    }
    .nav-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }
    .nav-cta-quick {
      display: none;
      border: 1px solid var(--gold);
      color: var(--gold);
      background: transparent;
      padding: 8px 12px;
      font-size: 0.66rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 700;
      line-height: 1;
      transition: var(--transition);
    }
    .nav-cta-quick:hover {
      background: rgba(208,119,85,0.12);
      color: var(--gold-light);
      border-color: var(--gold-light);
    }
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      margin-left: auto;
      padding: 6px;
      background: none;
      border: none;
    }
    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--gold);
      transition: var(--transition);
    }
    .mobile-menu {
      display: none;
      position: fixed;
      top: var(--nav-h);
      left: 0; right: 0;
      background: rgba(8, 8, 8, 0.97);
      backdrop-filter: blur(20px);
      padding: 32px 40px;
      flex-direction: column;
      gap: 24px;
      z-index: 999;
      border-top: 1px solid rgba(208,119,85,0.2);
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-size: 0.9rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--white-soft);
      cursor: pointer;
    }
    .mobile-menu a:hover { color: var(--gold); }
    .mobile-menu .nav-cta-mobile {
      display: inline-block;
      background: var(--gold);
      color: var(--black);
      padding: 12px 24px;
      font-weight: 700;
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-align: center;
    }

    .container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
    main {
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }
    main::before {
      content: "";
      position: absolute;
      inset: 0;
      background: center top / cover no-repeat url("img/tulum_toulouse.webp");
      -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 7%, rgba(0,0,0,0.7) 18%, rgba(0,0,0,0.35) 27%, transparent 35%, transparent 100%);
      mask-image: linear-gradient(to bottom, #000 0%, #000 7%, rgba(0,0,0,0.7) 18%, rgba(0,0,0,0.35) 27%, transparent 35%, transparent 100%);
      z-index: 0;
      pointer-events: none;
    }
    main > * {
      position: relative;
      z-index: 1;
    }

    .hero {
      padding-top: calc(var(--nav-h) + 90px);
      padding-bottom: 60px;
      text-align: center;
    }
    .hero .kicker {
      color: var(--gold);
      letter-spacing: 0.25em;
      text-transform: uppercase;
      font-size: 0.72rem;
      margin-bottom: 18px;
    }
    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 6vw, 3.5rem);
      line-height: 1.15;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 16px;
      text-shadow: 0 10px 26px rgba(0,0,0,0.55), 0 3px 12px rgba(0,0,0,0.45);
    }
    .hero p { color: var(--white-soft); max-width: 760px; margin: 0 auto; }

    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
      margin-bottom: 26px;
    }
    .card {
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.44) 100%);
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 4px;
      padding: 28px;
      box-shadow: 0 18px 40px rgba(0,0,0,0.42), inset 0 1px 0 rgba(255,255,255,0.18);
      -webkit-backdrop-filter: blur(14px) saturate(130%);
      backdrop-filter: blur(14px) saturate(130%);
      transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
    }
    .card:hover {
      transform: scale(1.012);
      box-shadow: 0 22px 44px rgba(0,0,0,0.46), inset 0 1px 0 rgba(255,255,255,0.2);
    }
    .card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(140deg, rgba(255,255,255,0.20) 0%, rgba(255,255,255,0.04) 36%, rgba(255,255,255,0.00) 60%);
      pointer-events: none;
    }
    .card > * {
      position: relative;
      z-index: 1;
    }
    .card h2 {
      font-family: var(--font-display);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--gold);
      font-size: 1.1rem;
      margin-bottom: 14px;
    }
    .list { list-style: none; display: grid; gap: 8px; }
    .list li {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      border-bottom: 1px dashed rgba(208,119,85,0.22);
      padding-bottom: 8px;
      color: var(--white-soft);
    }
    .list li strong { color: var(--white); font-weight: 600; }
    .reservation-copy {
      margin-bottom: 26px;
    }
    .reservation-copy p {
      color: var(--white-soft);
      margin-bottom: 14px;
      line-height: 1.85;
      font-size: 0.98rem;
    }
    .reservation-points {
      list-style: none;
      display: grid;
      gap: 10px;
      margin: 10px 0 18px;
    }
    .reservation-points li {
      color: var(--white);
      position: relative;
      padding-left: 18px;
      line-height: 1.8;
    }
    .reservation-points li::before {
      content: '*';
      color: var(--gold);
      position: absolute;
      left: 0;
      top: 0;
    }

    .cta {
      text-align: center;
      padding: 44px 20px 80px;
    }
    #agenda-reservation .pe-booking {
      border: 1px solid var(--gold);
      border-radius: 0;
      box-shadow: none;
      margin-bottom:40px;
    }
    #agenda-reservation .pe-booking__summary {
      border: 1px solid rgba(208,119,85,0.45);
      border-radius: 0;
    }

    .gift-card {
      padding: 0;
      display: grid;
      grid-template-columns: 1fr;
    }
    .gift-card-img {
      width: 100%;
      height: 100%;
      min-height: 250px;
      object-fit: cover;
      display: block;
    }
    .gift-card-body {
      padding: 28px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      text-align: left;
    }
    .gift-card-body h2 {
      color: var(--white);
      font-size: clamp(1.4rem, 4vw, 1.8rem);
      line-height: 1.3;
      margin-bottom: 24px;
      text-transform: uppercase;
      font-family: var(--font-display);
    }
    .btn-gold {
      display: inline-block;
      background: var(--gold);
      color: var(--black);
      font-weight: 700;
      padding: 12px 24px;
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: var(--transition);
      border: 1px solid var(--gold);
      text-align: center;
    }
    .btn-gold:hover {
      background: rgba(208,119,85,0.12);
      color: var(--gold);
    }

    @media (min-width: 768px) {
      .gift-card {
        grid-template-columns: 1fr 1fr;
      }
      .gift-card-body {
        padding: 40px;
      }
    }

    footer {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      background: #050505;
      border-top: 1px solid var(--black-border);
      padding: 80px 0 40px;
    }
    footer::before {
      content: "";
      position: absolute;
      inset: 0;
      background: center bottom / cover no-repeat url("img/tulum_toulouse.webp");
      -webkit-mask-image: linear-gradient(to top, #000 0%, #000 22%, rgba(0,0,0,0.55) 35%, transparent 50%, transparent 100%);
      mask-image: linear-gradient(to top, #000 0%, #000 22%, rgba(0,0,0,0.55) 35%, transparent 50%, transparent 100%);
      opacity: 0.55;
      pointer-events: none;
      z-index: 0;
    }
    footer > .container {
      position: relative;
      z-index: 1;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 60px;
      padding-bottom: 44px;
      border-bottom: 1px solid var(--black-border);
      margin-bottom: 28px;
    }
    .footer-brand-name {
      font-family: var(--font-display);
      font-size: 1.1rem;
      letter-spacing: 0.2em;
      color: #D07755;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .footer-tagline {
      font-size: 0.8rem;
      color: var(--white-soft);
      font-weight: 300;
      line-height: 1.7;
      margin-bottom: 24px;
      max-width: 240px;
    }
    .footer-social {
      display: flex;
      gap: 12px;
    }
    .footer-social a {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--white-soft);
      border: 1px solid var(--black-border);
      padding: 8px 14px;
      transition: var(--transition);
    }
    .footer-social a:hover {
      border-color: var(--gold);
      color: var(--gold);
      z-index: 2;
      text-shadow: 0 2px 12px rgba(0,0,0,0.7);
    }
    .footer-col-title {
      font-family: var(--font-display);
      font-size: 0.7rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: #D07755;
      margin-bottom: 20px;
    }
    .footer-nav-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-nav-list a {
      font-size: 0.82rem;
      color: var(--white-soft);
      transition: color 0.2s;
      cursor: pointer;
    }
    .footer-nav-list a:hover { color: var(--gold); }
    .footer-contact-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .footer-contact-list li {
      font-size: 0.82rem;
      color: var(--white-soft);
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .footer-contact-list li span:first-child {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      opacity: 0.7;
    }
    .footer-contact-list a {
      color: var(--white-soft);
      transition: color 0.2s;
    }
    .footer-contact-list a:hover { color: var(--gold); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-copy {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      color: var(--white-soft);
      opacity: 0.4;
    }
    .footer-legal {
      display: flex;
      gap: 24px;
    }
    .footer-legal a {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      color: var(--white-soft);
      opacity: 0.4;
      transition: opacity 0.2s;
    }
    .footer-legal a:hover { opacity: 0.8; }

    @media (max-width: 980px) {
      main::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.40);
        -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 7%, rgba(0,0,0,0.7) 18%, rgba(0,0,0,0.35) 27%, transparent 35%, transparent 100%);
        mask-image: linear-gradient(to bottom, #000 0%, #000 7%, rgba(0,0,0,0.7) 18%, rgba(0,0,0,0.35) 27%, transparent 35%, transparent 100%);
        pointer-events: none;
        z-index: 0;
      }
      footer::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.40);
        -webkit-mask-image: linear-gradient(to top, #000 0%, #000 22%, rgba(0,0,0,0.55) 35%, transparent 50%, transparent 100%);
        mask-image: linear-gradient(to top, #000 0%, #000 22%, rgba(0,0,0,0.55) 35%, transparent 50%, transparent 100%);
        pointer-events: none;
        z-index: 0;
      }
      .container { padding: 0 20px; }
      .hero { padding-top: calc(var(--nav-h) + 120px); }
      .hero p { margin-bottom: 1cm; }
      .grid-2 { grid-template-columns: 1fr; }
      .reservation-copy p,
      .reservation-points li { font-size: 0.95rem; line-height: 1.8; }
    }
    @media (max-width: 768px) {
      :root { --nav-h: 72px; }
      #navbar { padding: 0 20px; }
      .nav-links { display: none; }
      .nav-cta { display: none; }
      .nav-cta-quick { display: inline-block; margin-left: auto; }
      .nav-hamburger { display: flex; }
      .nav-hamburger { margin-left: 10px; }
      .nav-brand img { height: calc(34px * 1.1); }
      .container { padding: 0 20px; }
    }
      @media (max-width: 1120px) {
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
      .footer-tagline { max-width: none; }
    }
    @media (max-width: 900px) {
      footer { padding: 56px 0 30px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 22px; padding-bottom: 24px; margin-bottom: 20px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .footer-legal { flex-wrap: wrap; justify-content: center; }
    }
    @media (max-width: 520px) {
      .footer-grid { grid-template-columns: 1fr; }
    }

/* ===== Source: horaires-tarifs.html (style block 1) ===== */
:root {
      --black: #080808;
      --black-soft: #0e0e0e;
      --black-card: #111111;
      --black-border: #1c1c1c;
      --gold: #D07755;
      --gold-light: #D07755;
      --white: #F5F0E8;
      --white-soft: #c8bfaf;
      --font-display: 'Aboreto', serif;
      --font-body: 'Open Sans', sans-serif;
      --nav-h: 72px;
      --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html, body { overflow-x: hidden; }
    body {
      background: radial-gradient(1200px 700px at 50% 0%, rgba(65,31,18,0.38) 0%, rgba(8,8,8,0.96) 70%),
                  linear-gradient(180deg, #070707 0%, #0a0a0a 100%);
      color: var(--white);
      font-family: var(--font-body);
      line-height: 1.7;
      animation: pageIn 0.42s cubic-bezier(0.22, 0.61, 0.36, 1) both;
    }
    @keyframes pageIn {
      from { opacity: 0; filter: blur(14px); }
      to { opacity: 1; filter: blur(0); }
    }
    body.page-exit {
      animation: none;
      opacity: 0;
      filter: blur(14px);
      transition: opacity 0.42s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
      pointer-events: none;
    }
    @media (prefers-reduced-motion: reduce) {
      body { animation: none; }
      body.page-exit { opacity: 1; filter: none; transition: none; }
    }
    a { color: inherit; text-decoration: none; }

    #navbar {
      position: sticky;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      height: var(--nav-h);
      overflow: hidden;
      isolation: isolate;
      background: rgba(8, 8, 8, 0.78);
      backdrop-filter: blur(10px) saturate(110%);
      -webkit-backdrop-filter: blur(10px) saturate(110%);
      box-shadow:  0 4px 14px rgba(0,0,0,0.22);
      display: flex;
      align-items: center;
      padding: 0 40px;
      transition: var(--transition);
    }
    #navbar::before {
      content: "";
      position: absolute;
      inset: 0;
      background: none;
      pointer-events: none;
      z-index: 0;
    }
    #navbar > * {
      position: relative;
      z-index: 1;
    }
    .nav-brand {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }
    .nav-brand img {
      height: calc(42px * 1.1);
      width: auto;
      display: block;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      margin-left: auto;
      list-style: none;
    }
    .nav-links a {
      font-family: var(--font-body);
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--white-soft);
      transition: color 0.2s;
      cursor: pointer;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      margin-left: 32px;
      background: var(--gold);
      color: var(--black) !important;
      font-weight: 700;
      padding: 10px 22px;
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      transition: var(--transition) !important;
      flex-shrink: 0;
    }
    .nav-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }
    .nav-cta-quick {
      display: none;
      border: 1px solid var(--gold);
      color: var(--gold);
      background: transparent;
      padding: 8px 12px;
      font-size: 0.66rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 700;
      line-height: 1;
      transition: var(--transition);
    }
    .nav-cta-quick:hover {
      background: rgba(208,119,85,0.12);
      color: var(--gold-light);
      border-color: var(--gold-light);
    }
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      margin-left: auto;
      padding: 6px;
      background: none;
      border: none;
    }
    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--gold);
      transition: var(--transition);
    }
    .mobile-menu {
      display: none;
      position: fixed;
      top: var(--nav-h);
      left: 0; right: 0;
      background: rgba(8, 8, 8, 0.97);
      backdrop-filter: blur(20px);
      padding: 32px 40px;
      flex-direction: column;
      gap: 24px;
      z-index: 999;
      border-top: 1px solid rgba(208,119,85,0.2);
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-size: 0.9rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--white-soft);
      cursor: pointer;
    }
    .mobile-menu a:hover { color: var(--gold); }
    .mobile-menu .nav-cta-mobile {
      display: inline-block;
      background: var(--gold);
      color: var(--black);
      padding: 12px 24px;
      font-weight: 700;
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-align: center;
    }

    .container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
    main {
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }
    main::before {
      content: "";
      position: absolute;
      inset: 0;
      background: center top / cover no-repeat url("img/temazcal_toulouse.webp");
      -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 7%, rgba(0,0,0,0.7) 18%, rgba(0,0,0,0.35) 27%, transparent 35%, transparent 100%);
      mask-image: linear-gradient(to bottom, #000 0%, #000 7%, rgba(0,0,0,0.7) 18%, rgba(0,0,0,0.35) 27%, transparent 35%, transparent 100%);
      z-index: 0;
      pointer-events: none;
    }
    main > * {
      position: relative;
      z-index: 1;
    }

    .hero {
      padding-top: calc(var(--nav-h) + 90px);
      padding-bottom: 60px;
      text-align: center;
    }
    .hero .kicker {
      color: var(--gold);
      letter-spacing: 0.25em;
      text-transform: uppercase;
      font-size: 0.72rem;
      margin-bottom: 18px;
    }
    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 6vw, 3.5rem);
      line-height: 1.15;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .hero p { color: var(--white-soft); max-width: 760px; margin: 0 auto; }

    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
      margin-bottom: 26px;
    }
    .card {
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.44) 100%);
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 4px;
      padding: 28px;
      box-shadow: 0 18px 40px rgba(0,0,0,0.42), inset 0 1px 0 rgba(255,255,255,0.18);
      -webkit-backdrop-filter: blur(14px) saturate(130%);
      backdrop-filter: blur(14px) saturate(130%);
      transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
    }
    .card:hover {
      transform: scale(1.012);
      box-shadow: 0 22px 44px rgba(0,0,0,0.46), inset 0 1px 0 rgba(255,255,255,0.2);
    }
    .card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(140deg, rgba(255,255,255,0.20) 0%, rgba(255,255,255,0.04) 36%, rgba(255,255,255,0.00) 60%);
      pointer-events: none;
    }
    .card > * {
      position: relative;
      z-index: 1;
    }
    .card h2 {
      font-family: var(--font-display);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--gold);
      font-size: 1.1rem;
      margin-bottom: 14px;
    }
    .list { list-style: none; display: grid; gap: 8px; }
    .list li {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      border-bottom: 1px dashed rgba(208,119,85,0.22);
      padding-bottom: 8px;
      color: var(--white-soft);
    }
    .list li strong { color: var(--white); font-weight: 600; }

    .price-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
      margin: 30px 0 16px;
    }
    .price-card {
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.44) 100%);
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 2px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 18px 40px rgba(0,0,0,0.42), inset 0 1px 0 rgba(255,255,255,0.18);
      -webkit-backdrop-filter: blur(1px) saturate(130%);
      backdrop-filter: blur(1px) saturate(130%);
      transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
    }
    .price-card:hover {
      transform: scale(1.012);
      box-shadow: 0 22px 44px rgba(0,0,0,0.46), inset 0 1px 0 rgba(255,255,255,0.2);
    }
    .price-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(140deg, rgba(255,255,255,0.20) 0%, rgba(255,255,255,0.04) 36%, rgba(255,255,255,0.00) 60%);
      pointer-events: none;
    }
    .price-card > * {
      position: relative;
      z-index: 1;
    }
    .price-card h3 {
      text-transform: uppercase;
      letter-spacing: 0.13em;
      font-size: 0.86rem;
      color: var(--gold-light);
      margin-bottom: 10px;
    }
    .price {
      font-family: var(--font-display);
      color: var(--gold);
      font-size: 2rem;
      line-height: 1;
      margin-bottom: 8px;
    }
    .price-card p { color: var(--white-soft); font-size: 0.95rem; }

    .cta {
      text-align: center;
      padding: 44px 20px 80px;
    }

    body.page-horaires .amenities-section {
      padding: 18px 0 96px;
    }
    body.page-horaires .amenities-head {
      text-align: center;
      margin-bottom: 24px;
    }
    body.page-horaires .amenities-kicker {
      color: var(--gold);
      letter-spacing: 0.24em;
      text-transform: uppercase;
      font-size: 0.7rem;
      margin-bottom: 10px;
    }
    body.page-horaires .amenities-head h2 {
      font-family: var(--font-display);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--gold-light);
      font-size: clamp(1.2rem, 2.8vw, 1.8rem);
    }
    body.page-horaires .amenities-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px 12px;
    }
    body.page-horaires .amenity-card {
      text-align: center;
      padding: 6px;
    }
    body.page-horaires .amenity-card img {
      width: 64px;
      height: 64px;
      object-fit: contain;
      display: block;
      margin: 0 auto 8px;
    }
    body.page-horaires .amenity-card img[src*="porte"],
    body.page-horaires .amenity-card img[src*="voyage"] {
      width: 80px;
      height: 80px;
    }
    body.page-horaires .amenity-card p {
      color: var(--white);
      font-size: 0.76rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      line-height: 1.35;
    }

    @media (max-width: 980px) {
      body.page-horaires .amenities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
    @media (max-width: 768px) {
      body.page-horaires .amenities-section {
        padding: 10px 0 72px;
      }
      body.page-horaires .amenities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 8px;
      }
      body.page-horaires .amenity-card img {
        width: 52px;
        height: 52px;
      }
      body.page-horaires .amenity-card img[src*="porte"],
      body.page-horaires .amenity-card img[src*="voyage"] {
        width: 65px;
        height: 65px;
      }
      body.page-horaires .amenity-card p {
        font-size: 0.7rem;
        letter-spacing: 0.03em;
      }
    }

    .btn {
      display: inline-block;
      background: var(--gold);
      color: var(--black);
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-size: 0.76rem;
      padding: 12px 24px;
    }

    footer {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      background: #050505;
      border-top: 1px solid var(--black-border);
      padding: 80px 0 40px;
    }
    footer::before {
      content: "";
      position: absolute;
      inset: 0;
      background: center bottom / cover no-repeat url("img/tulum_toulouse.webp");
      -webkit-mask-image: linear-gradient(to top, #000 0%, #000 22%, rgba(0,0,0,0.55) 35%, transparent 50%, transparent 100%);
      mask-image: linear-gradient(to top, #000 0%, #000 22%, rgba(0,0,0,0.55) 35%, transparent 50%, transparent 100%);
      opacity: 0.55;
      pointer-events: none;
      z-index: 0;
    }
    footer > .container {
      position: relative;
      z-index: 1;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 60px;
      padding-bottom: 44px;
      border-bottom: 1px solid var(--black-border);
      margin-bottom: 28px;
    }
    .footer-brand-name {
      font-family: var(--font-display);
      font-size: 1.1rem;
      letter-spacing: 0.2em;
      color: #D07755;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .footer-tagline {
      font-size: 0.8rem;
      color: var(--white-soft);
      font-weight: 300;
      line-height: 1.7;
      margin-bottom: 24px;
      max-width: 240px;
    }
    .footer-social {
      display: flex;
      gap: 12px;
    }
    .footer-social a {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--white-soft);
      border: 1px solid var(--black-border);
      padding: 8px 14px;
      transition: var(--transition);
    }
    .footer-social a:hover {
      border-color: var(--gold);
      color: var(--gold);
      z-index: 2;
      text-shadow: 0 2px 12px rgba(0,0,0,0.7);
    }
    .footer-col-title {
      font-family: var(--font-display);
      font-size: 0.7rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: #D07755;
      margin-bottom: 20px;
    }
    .footer-nav-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-nav-list a {
      font-size: 0.82rem;
      color: var(--white-soft);
      transition: color 0.2s;
      cursor: pointer;
    }
    .footer-nav-list a:hover { color: var(--gold); }
    .footer-contact-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .footer-contact-list li {
      font-size: 0.82rem;
      color: var(--white-soft);
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .footer-contact-list li span:first-child {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      opacity: 0.7;
    }
    .footer-contact-list a {
      color: var(--white-soft);
      transition: color 0.2s;
    }
    .footer-contact-list a:hover { color: var(--gold); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-copy {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      color: var(--white-soft);
      opacity: 0.4;
    }
    .footer-legal {
      display: flex;
      gap: 24px;
    }
    .footer-legal a {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      color: var(--white-soft);
      opacity: 0.4;
      transition: opacity 0.2s;
    }
    .footer-legal a:hover { opacity: 0.8; }

    @media (max-width: 980px) {
      main::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.40);
        -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 7%, rgba(0,0,0,0.7) 18%, rgba(0,0,0,0.35) 27%, transparent 35%, transparent 100%);
        mask-image: linear-gradient(to bottom, #000 0%, #000 7%, rgba(0,0,0,0.7) 18%, rgba(0,0,0,0.35) 27%, transparent 35%, transparent 100%);
        pointer-events: none;
        z-index: 0;
      }
      footer::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.40);
        -webkit-mask-image: linear-gradient(to top, #000 0%, #000 22%, rgba(0,0,0,0.55) 35%, transparent 50%, transparent 100%);
        mask-image: linear-gradient(to top, #000 0%, #000 22%, rgba(0,0,0,0.55) 35%, transparent 50%, transparent 100%);
        pointer-events: none;
        z-index: 0;
      }
      .container { padding: 0 20px; }
      .hero { padding-top: calc(var(--nav-h) + 120px); }
      .hero p { margin-bottom: 1cm; }
      .grid-2, .price-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      :root { --nav-h: 72px; }
      #navbar { padding: 0 20px; }
      .nav-links { display: none; }
      .nav-cta { display: none; }
      .nav-cta-quick { display: inline-block; margin-left: auto; }
      .nav-hamburger { display: flex; }
      .nav-hamburger { margin-left: 10px; }
      .nav-brand img { height: calc(34px * 1.1); }
      .container { padding: 0 20px; }
    }
      @media (max-width: 1120px) {
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
      .footer-tagline { max-width: none; }
    }
    @media (max-width: 900px) {
      footer { padding: 56px 0 30px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 22px; padding-bottom: 24px; margin-bottom: 20px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .footer-legal { flex-wrap: wrap; justify-content: center; }
    }
    @media (max-width: 520px) {
      .footer-grid { grid-template-columns: 1fr; }
    }

/* ===== Source: https://pauze-experiences.com/produit/carte-cadeau/ (style block 1) ===== */
:root {
      --black: #080808;
      --black-soft: #0e0e0e;
      --black-card: #111111;
      --black-border: #1c1c1c;
      --gold: #D07755;
      --gold-light: #D07755;
      --white: #f5f0e8;
      --white-soft: #c8bfaf;
      --font-display: 'Aboreto', serif;
      --font-body: 'Open Sans', sans-serif;
      --nav-h: 72px;
      --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html, body { overflow-x: hidden; }
    body {
      background: radial-gradient(1200px 600px at 80% -10%, rgba(208,119,85,0.12), transparent 60%), linear-gradient(180deg, #070707 0%, #0a0a0a 100%);
      color: var(--white);
      font-family: var(--font-body);
      line-height: 1.7;
      animation: pageIn 0.42s cubic-bezier(0.22, 0.61, 0.36, 1) both;
    }
    @keyframes pageIn {
      from { opacity: 0; filter: blur(14px); }
      to { opacity: 1; filter: blur(0); }
    }
    body.page-exit {
      animation: none;
      opacity: 0;
      filter: blur(14px);
      transition: opacity 0.42s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
      pointer-events: none;
    }
    @media (prefers-reduced-motion: reduce) {
      body { animation: none; }
      body.page-exit { opacity: 1; filter: none; transition: none; }
    }
    a { color: inherit; text-decoration: none; }

    #navbar {
      position: sticky;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      height: var(--nav-h);
      overflow: hidden;
      isolation: isolate;
      background: rgba(8, 8, 8, 0.78);
      backdrop-filter: blur(10px) saturate(110%);
      -webkit-backdrop-filter: blur(10px) saturate(110%);
      box-shadow:  0 4px 14px rgba(0,0,0,0.22);
      display: flex;
      align-items: center;
      padding: 0 40px;
      transition: var(--transition);
    }
    #navbar::before {
      content: "";
      position: absolute;
      inset: 0;
      background: none;
      pointer-events: none;
      z-index: 0;
    }
    #navbar > * {
      position: relative;
      z-index: 1;
    }
    .nav-brand {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }
    .nav-brand img {
      height: calc(42px * 1.1);
      width: auto;
      display: block;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      margin-left: auto;
      list-style: none;
    }
    .nav-links a {
      font-family: var(--font-body);
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--white-soft);
      transition: color 0.2s;
      cursor: pointer;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      margin-left: 32px;
      background: var(--gold);
      color: var(--black) !important;
      font-weight: 700;
      padding: 10px 22px;
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      transition: var(--transition) !important;
      flex-shrink: 0;
    }
    .nav-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }
    .nav-cta-quick {
      display: none;
      border: 1px solid var(--gold);
      color: var(--gold);
      background: transparent;
      padding: 8px 12px;
      font-size: 0.66rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 700;
      line-height: 1;
      transition: var(--transition);
    }
    .nav-cta-quick:hover {
      background: rgba(208,119,85,0.12);
      color: var(--gold-light);
      border-color: var(--gold-light);
    }
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      margin-left: auto;
      padding: 6px;
      background: none;
      border: none;
    }
    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--gold);
      transition: var(--transition);
    }
    .mobile-menu {
      display: none;
      position: fixed;
      top: var(--nav-h);
      left: 0; right: 0;
      background: rgba(8, 8, 8, 0.97);
      backdrop-filter: blur(20px);
      padding: 32px 40px;
      flex-direction: column;
      gap: 24px;
      z-index: 999;
      border-top: 1px solid rgba(208,119,85,0.2);
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-size: 0.9rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--white-soft);
      cursor: pointer;
    }
    .mobile-menu a:hover { color: var(--gold); }
    .mobile-menu .nav-cta-mobile {
      display: inline-block;
      background: var(--gold);
      color: var(--black);
      padding: 12px 24px;
      font-weight: 700;
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-align: center;
    }

    .container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }

    .hero {
      padding-top: calc(var(--nav-h) + 90px);
      padding-bottom: 40px;
      text-align: center;
    }
    .hero .kicker {
      color: var(--gold);
      letter-spacing: 0.25em;
      text-transform: uppercase;
      font-size: 0.72rem;
      margin-bottom: 18px;
    }
    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 6vw, 3.4rem);
      line-height: 1.15;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .hero p { color: var(--white-soft); max-width: 760px; margin: 0 auto; }

    .gift-wrap {
      padding-bottom: 84px;
    }
    .gift-layout {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 24px;
      align-items: start;
    }
    .card {
      background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0)), var(--black-card);
      border: 1px solid var(--black-border);
      padding: 28px;
    }
    .card h2 {
      font-family: var(--font-display);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--gold);
      font-size: 1.1rem;
      margin-bottom: 14px;
    }
    .list {
      list-style: none;
      display: grid;
      gap: 8px;
      color: var(--white-soft);
    }
    .list li {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      border-bottom: 1px dashed rgba(208,119,85,0.22);
      padding-bottom: 8px;
      font-size: 0.9rem;
    }
    .list li strong { color: var(--white); font-weight: 600; }
    .helper {
      margin-top: 14px;
      font-size: 0.82rem;
      color: var(--white-soft);
    }
    .gift-message {
      color: var(--white);
      font-size: 1rem;
      line-height: 1.85;
      max-width: 34ch;
    }
    .gift-icon {
      width: 64px;
      height: 64px;
      margin-bottom: 16px;
      color: var(--gold);
      display: block;
    }
    .gift-photo {
      width: 100%;
      margin-top: 16px;
      border: 1px solid rgba(208,119,85,0.55);
      aspect-ratio: 16 / 10;
      object-fit: cover;
      display: block;
    }
    .gift-note {
      margin-top: 14px;
      padding-left: 12px;
      border-left: 2px solid var(--gold);
      color: var(--white-soft);
      font-size: 0.92rem;
      line-height: 1.7;
    }

    .gift-form-shell {
      background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,242,229,0.98) 100%);
      border: 1px solid var(--gold);
      border-radius: 0;
      box-shadow: none;
      padding: 24px;
      color: #14100a;
    }
    .gift-form-shell h2 {
      font-family: var(--font-display);
      font-size: clamp(1.2rem, 2vw, 1.6rem);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-align: center;
      margin-bottom: 6px;
    }
    .gift-sub {
      text-align: center;
      color: #564837;
      font-size: 0.86rem;
      margin-bottom: 20px;
    }
    .gift-form {
      display: grid;
      gap: 13px;
    }
    .gift-form label {
      display: block;
      margin-bottom: 5px;
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #4b3c2d;
      font-weight: 700;
    }
    .gift-form input,
    .gift-form select,
    .gift-form textarea {
      width: 100%;
      border: 1px solid rgba(20,16,10,0.2);
      background: rgba(255,255,255,0.82);
      border-radius: 12px;
      padding: 11px 12px;
      font: inherit;
      color: #1f1710;
    }
    .gift-form textarea {
      min-height: 120px;
      resize: vertical;
    }
    .inline-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }
    .send-now {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.84rem;
      color: #3f3021;
    }
    .send-now input {
      width: 16px;
      height: 16px;
      accent-color: #D07755;
    }
    .meta-line {
      display: flex;
      justify-content: space-between;
      font-size: 0.75rem;
      color: #655340;
      margin-top: 5px;
    }
    .error {
      display: none;
      background: rgba(255, 240, 240, 0.8);
      border: 1px solid rgba(186, 56, 56, 0.45);
      color: #761a1a;
      border-radius: 10px;
      padding: 10px;
      font-size: 0.84rem;
    }
    .cta {
      margin-top: 4px;
      width: 100%;
      border: 0;
      border-radius: 999px;
      color: #0f0b07;
      padding: 14px 18px;
      font-size: 0.82rem;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      font-weight: 800;
      cursor: pointer;
      transition: 0.2s ease;
    }

    .legal {
      margin-top: 10px;
      text-align: center;
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      color: #6f5d46;
    }

    footer {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      background: #050505;
      border-top: 1px solid var(--black-border);
      padding: 80px 0 40px;
    }
    footer::before {
      content: "";
      position: absolute;
      inset: 0;
      background: center bottom / cover no-repeat url("img/tulum_toulouse.webp");
      -webkit-mask-image: linear-gradient(to top, #000 0%, #000 22%, rgba(0,0,0,0.55) 35%, transparent 50%, transparent 100%);
      mask-image: linear-gradient(to top, #000 0%, #000 22%, rgba(0,0,0,0.55) 35%, transparent 50%, transparent 100%);
      opacity: 0.55;
      pointer-events: none;
      z-index: 0;
    }
    footer > .container {
      position: relative;
      z-index: 1;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 60px;
      padding-bottom: 44px;
      border-bottom: 1px solid var(--black-border);
      margin-bottom: 28px;
    }
    .footer-brand-name {
      font-family: var(--font-display);
      font-size: 1.1rem;
      letter-spacing: 0.2em;
      color: #D07755;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .footer-tagline {
      font-size: 0.8rem;
      color: var(--white-soft);
      font-weight: 300;
      line-height: 1.7;
      margin-bottom: 24px;
      max-width: 240px;
    }
    .footer-social {
      display: flex;
      gap: 12px;
    }
    .footer-social a {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--white-soft);
      border: 1px solid var(--black-border);
      padding: 8px 14px;
      transition: var(--transition);
    }
    .footer-social a:hover {
      border-color: var(--gold);
      color: var(--gold);
    }
    .footer-col-title {
      font-family: var(--font-display);
      font-size: 0.7rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: #D07755;
      margin-bottom: 20px;
    }
    .footer-nav-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-nav-list a {
      font-size: 0.82rem;
      color: var(--white-soft);
      transition: color 0.2s;
      cursor: pointer;
    }
    .footer-nav-list a:hover { color: var(--gold); }
    .footer-contact-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .footer-contact-list li {
      font-size: 0.82rem;
      color: var(--white-soft);
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .footer-contact-list li span:first-child {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      opacity: 0.7;
    }
    .footer-contact-list a {
      color: var(--white-soft);
      transition: color 0.2s;
    }
    .footer-contact-list a:hover { color: var(--gold); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-copy {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      color: var(--white-soft);
      opacity: 0.4;
    }
    .footer-legal {
      display: flex;
      gap: 24px;
    }
    .footer-legal a {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      color: var(--white-soft);
      opacity: 0.4;
      transition: opacity 0.2s;
    }
    .footer-legal a:hover { opacity: 0.8; }

    @media (max-width: 1080px) {
      .gift-layout { grid-template-columns: 1fr; }
    }
    @media (max-width: 980px) {
      footer::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.40);
        -webkit-mask-image: linear-gradient(to top, #000 0%, #000 22%, rgba(0,0,0,0.55) 35%, transparent 50%, transparent 100%);
        mask-image: linear-gradient(to top, #000 0%, #000 22%, rgba(0,0,0,0.55) 35%, transparent 50%, transparent 100%);
        pointer-events: none;
        z-index: 0;
      }
      .container { padding: 0 20px; }
      .hero { padding-top: calc(var(--nav-h) + 120px); }
      .hero p { margin-bottom: 1cm; }
      .inline-row { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      :root { --nav-h: 72px; }
      #navbar { padding: 0 20px; }
      .nav-links { display: none; }
      .nav-cta { display: none; }
      .nav-cta-quick { display: inline-block; margin-left: auto; }
      .nav-hamburger { display: flex; }
      .nav-hamburger { margin-left: 10px; }
      .nav-brand img { height: calc(34px * 1.1); }
      .container { padding: 0 20px; }
    }
    @media (max-width: 1120px) {
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
      .footer-tagline { max-width: none; }
    }
    @media (max-width: 900px) {
      footer { padding: 56px 0 30px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 22px; padding-bottom: 24px; margin-bottom: 20px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .footer-legal { flex-wrap: wrap; justify-content: center; }
    }
    @media (max-width: 520px) {
      .footer-grid { grid-template-columns: 1fr; }
    }

/* ===== Source: contact.html (style block 1) ===== */
:root {
      --black: #080808;
      --black-soft: #0e0e0e;
      --black-card: #111111;
      --black-border: #1c1c1c;
      --gold: #D07755;
      --gold-light: #D07755;
      --white: #F5F0E8;
      --white-soft: #c8bfaf;
      --font-display: 'Aboreto', serif;
      --font-body: 'Open Sans', sans-serif;
      --nav-h: 72px;
      --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      background: radial-gradient(1200px 700px at 50% 0%, rgba(65,31,18,0.38) 0%, rgba(8,8,8,0.96) 70%),
                  linear-gradient(180deg, #060606 0%, #0b0b0b 100%);
      color: var(--white);
      font-family: var(--font-body);
      line-height: 1.7;
      animation: pageIn 0.42s cubic-bezier(0.22, 0.61, 0.36, 1) both;
    }
    @keyframes pageIn {
      from { opacity: 0; filter: blur(14px); }
      to { opacity: 1; filter: blur(0); }
    }
    body.page-exit {
      animation: none;
      opacity: 0;
      filter: blur(14px);
      transition: opacity 0.42s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
      pointer-events: none;
    }
    @media (prefers-reduced-motion: reduce) {
      body { animation: none; }
      body.page-exit { opacity: 1; filter: none; transition: none; }
    }
    a { color: inherit; text-decoration: none; }

    #navbar {
      position: sticky;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      height: var(--nav-h);
      overflow: hidden;
      isolation: isolate;
      background: rgba(8, 8, 8, 0.78);
      backdrop-filter: blur(10px) saturate(110%);
      -webkit-backdrop-filter: blur(10px) saturate(110%);
      box-shadow:  0 4px 14px rgba(0,0,0,0.22);
      display: flex;
      align-items: center;
      padding: 0 40px;
      transition: var(--transition);
    }
    #navbar::before {
      content: "";
      position: absolute;
      inset: 0;
      background: none;
      pointer-events: none;
      z-index: 0;
    }
    #navbar > * {
      position: relative;
      z-index: 1;
    }
    .nav-brand {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }
    .nav-brand img {
      height: calc(42px * 1.1);
      width: auto;
      display: block;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      margin-left: auto;
      list-style: none;
    }
    .nav-links a {
      font-family: var(--font-body);
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--white-soft);
      transition: color 0.2s;
      cursor: pointer;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      margin-left: 32px;
      background: var(--gold);
      color: var(--black) !important;
      font-weight: 700;
      padding: 10px 22px;
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      transition: var(--transition) !important;
      flex-shrink: 0;
    }
    .nav-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }
    .nav-cta-quick {
      display: none;
      border: 1px solid var(--gold);
      color: var(--gold);
      background: transparent;
      padding: 8px 12px;
      font-size: 0.66rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 700;
      line-height: 1;
      transition: var(--transition);
    }
    .nav-cta-quick:hover {
      background: rgba(208,119,85,0.12);
      color: var(--gold-light);
      border-color: var(--gold-light);
    }
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      margin-left: auto;
      padding: 6px;
      background: none;
      border: none;
    }
    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--gold);
      transition: var(--transition);
    }
    .mobile-menu {
      display: none;
      position: fixed;
      top: var(--nav-h);
      left: 0; right: 0;
      background: rgba(8, 8, 8, 0.97);
      backdrop-filter: blur(20px);
      padding: 32px 40px;
      flex-direction: column;
      gap: 24px;
      z-index: 999;
      border-top: 1px solid rgba(208,119,85,0.2);
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-size: 0.9rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--white-soft);
      cursor: pointer;
    }
    .mobile-menu a:hover { color: var(--gold); }
    .mobile-menu .nav-cta-mobile {
      display: inline-block;
      background: var(--gold);
      color: var(--black);
      padding: 12px 24px;
      font-weight: 700;
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-align: center;
    }

    .container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
    main {
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }
    main::before {
      content: "";
      position: absolute;
      inset: 0;
      background: center top / cover no-repeat url("img/spa_de_luxe_toulouse.webp");
      -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 16%, rgba(0,0,0,0.78) 34%, rgba(0,0,0,0.42) 48%, transparent 60%, transparent 100%);
      mask-image: linear-gradient(to bottom, #000 0%, #000 16%, rgba(0,0,0,0.78) 34%, rgba(0,0,0,0.42) 48%, transparent 60%, transparent 100%);
      z-index: 0;
      pointer-events: none;
    }
    main > * {
      position: relative;
      z-index: 1;
    }

    body.page-blog main::before {
      content: none;
      background: none;
      -webkit-mask-image: none;
      mask-image: none;
    }

    .hero {
      padding-top: calc(var(--nav-h) + 90px);
      padding-bottom: 50px;
      text-align: center;
    }
    .kicker {
      color: var(--gold);
      letter-spacing: 0.25em;
      text-transform: uppercase;
      font-size: 0.72rem;
      margin-bottom: 18px;
    }
    h1 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 6vw, 3.5rem);
      line-height: 1.15;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .hero p { color: var(--white-soft); max-width: 760px; margin: 0 auto; }

    .layout {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 24px;
      padding-bottom: 70px;
    }
    .card {
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, rgba(0,0,0,0.74) 0%, rgba(0,0,0,0.55) 100%);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 4px;
      padding: 28px;
      box-shadow: 0 18px 40px rgba(0,0,0,0.42), inset 0 1px 0 rgba(255,255,255,0.18);
      -webkit-backdrop-filter: blur(14px) saturate(130%);
      backdrop-filter: blur(4px) saturate(130%);
      transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
    }
    .card:hover {
      transform: scale(1.012);
      box-shadow: 0 22px 44px rgba(0,0,0,0.46), inset 0 1px 0 rgba(255,255,255,0.2);
    }
    .card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(140deg, rgba(255,255,255,0.20) 0%, rgba(255,255,255,0.04) 36%, rgba(255,255,255,0.00) 60%);
      pointer-events: none;
    }
    .card > * {
      position: relative;
      z-index: 1;
    }
    .card h2 {
      font-family: var(--font-display);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--gold);
      font-size: 1.1rem;
      margin-bottom: 14px;
    }
    .contact-list {
      list-style: none;
      display: grid;
      gap: 10px;
      color: var(--white-soft);
      margin-bottom: 22px;
    }
    .contact-list strong { color: var(--white); font-weight: 600; }

    .map-wrap iframe {
      width: 100%;
      min-height: 250px;
      border: 0;
      filter: grayscale(1) contrast(1.1) brightness(0.8);
    }

    form {
      display: grid;
      gap: 12px;
    }
    label {
      font-size: 0.82rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #ffffff;
    }
    input, textarea {
      width: 100%;
      background: rgba(0,0,0,0.34);
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 6px;
      padding: 12px;
      font: inherit;
      -webkit-backdrop-filter: blur(10px) saturate(125%);
      backdrop-filter: blur(10px) saturate(125%);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
      transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    }
    input:focus, textarea:focus {
      outline: none;
      border-color: rgba(208,119,85,0.72);
      background: rgba(0,0,0,0.42);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 0 0 2px rgba(208,119,85,0.16);
    }
    textarea { min-height: 140px; resize: vertical; }
    button {
      margin-top: 8px;
      border: 0;
      background: var(--gold);
      color: var(--black);
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-size: 0.76rem;
      padding: 12px 24px;
      cursor: pointer;
    }

    footer {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      background: #050505;
      border-top: 1px solid var(--black-border);
      padding: 80px 0 40px;
    }
    footer::before {
      content: "";
      position: absolute;
      inset: 0;
      background: center bottom / cover no-repeat url("img/tulum_toulouse.webp");
      -webkit-mask-image: linear-gradient(to top, #000 0%, #000 22%, rgba(0,0,0,0.55) 35%, transparent 50%, transparent 100%);
      mask-image: linear-gradient(to top, #000 0%, #000 22%, rgba(0,0,0,0.55) 35%, transparent 50%, transparent 100%);
      opacity: 0.55;
      pointer-events: none;
      z-index: 0;
    }
    footer > .container {
      position: relative;
      z-index: 1;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 60px;
      padding-bottom: 44px;
      border-bottom: 1px solid var(--black-border);
      margin-bottom: 28px;
    }
    .footer-brand-name {
      font-family: var(--font-display);
      font-size: 1.1rem;
      letter-spacing: 0.2em;
      color: #D07755;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .footer-tagline {
      font-size: 0.8rem;
      color: var(--white-soft);
      font-weight: 300;
      line-height: 1.7;
      margin-bottom: 24px;
      max-width: 240px;
    }
    .footer-social {
      display: flex;
      gap: 12px;
    }
    .footer-social a {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--white-soft);
      border: 1px solid var(--black-border);
      padding: 8px 14px;
      transition: var(--transition);
    }
    .footer-social a:hover {
      border-color: var(--gold);
      color: var(--gold);
      z-index: 2;
      text-shadow: 0 2px 12px rgba(0,0,0,0.7);
    }
    .footer-col-title {
      font-family: var(--font-display);
      font-size: 0.7rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: #D07755;
      margin-bottom: 20px;
    }
    .footer-nav-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-nav-list a {
      font-size: 0.82rem;
      color: var(--white-soft);
      transition: color 0.2s;
      cursor: pointer;
    }
    .footer-nav-list a:hover { color: var(--gold); }
    .footer-contact-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .footer-contact-list li {
      font-size: 0.82rem;
      color: var(--white-soft);
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .footer-contact-list li span:first-child {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      opacity: 0.7;
    }
    .footer-contact-list a {
      color: var(--white-soft);
      transition: color 0.2s;
    }
    .footer-contact-list a:hover { color: var(--gold); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-copy {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      color: var(--white-soft);
      opacity: 0.4;
    }
    .footer-legal {
      display: flex;
      gap: 24px;
    }
    .footer-legal a {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      color: var(--white-soft);
      opacity: 0.4;
      transition: opacity 0.2s;
    }
    .footer-legal a:hover { opacity: 0.8; }

    @media (max-width: 980px) {
      main::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.40);
        -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 16%, rgba(0,0,0,0.78) 34%, rgba(0,0,0,0.42) 48%, transparent 60%, transparent 100%);
        mask-image: linear-gradient(to bottom, #000 0%, #000 16%, rgba(0,0,0,0.78) 34%, rgba(0,0,0,0.42) 48%, transparent 60%, transparent 100%);
        pointer-events: none;
        z-index: 0;
      }
      footer::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.40);
        -webkit-mask-image: linear-gradient(to top, #000 0%, #000 22%, rgba(0,0,0,0.55) 35%, transparent 50%, transparent 100%);
        mask-image: linear-gradient(to top, #000 0%, #000 22%, rgba(0,0,0,0.55) 35%, transparent 50%, transparent 100%);
        pointer-events: none;
        z-index: 0;
      }
      .container { padding: 0 20px; }
      .hero { padding-top: calc(var(--nav-h) + 120px); }
      .hero p { margin-bottom: 1cm; }
      .layout { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      :root { --nav-h: 72px; }
      #navbar { padding: 0 20px; }
      .nav-links { display: none; }
      .nav-cta { display: none; }
      .nav-cta-quick { display: inline-block; margin-left: auto; }
      .nav-hamburger { display: flex; }
      .nav-hamburger { margin-left: 10px; }
      .nav-brand img { height: calc(34px * 1.1); }
      .container { padding: 0 20px; margin-top: 75px;}
    }
      @media (max-width: 1120px) {
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
      .footer-tagline { max-width: none; }
    }
    @media (max-width: 900px) {
      footer { padding: 56px 0 30px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 22px; padding-bottom: 24px; margin-bottom: 20px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .footer-legal { flex-wrap: wrap; justify-content: center; }
    }
    @media (max-width: 520px) {
      .footer-grid { grid-template-columns: 1fr; }
    }

/* ===== Harmonisation Layer ===== */
body.page-index {
  background: var(--black);
}
body.page-reservation {
  background: radial-gradient(1200px 700px at 50% 0%, rgba(65,31,18,0.38) 0%, rgba(8,8,8,0.96) 70%), linear-gradient(180deg, #070707 0%, #0a0a0a 100%);
}
body.page-horaires {
  background: radial-gradient(1200px 700px at 50% 0%, rgba(65,31,18,0.38) 0%, rgba(8,8,8,0.96) 70%), linear-gradient(180deg, #070707 0%, #0a0a0a 100%);
}
body.page-carte-cadeau {
  background: radial-gradient(1200px 600px at 80% -10%, rgba(208,119,85,0.12), transparent 60%), linear-gradient(180deg, #070707 0%, #0a0a0a 100%);
}
body.page-contact {
  background: radial-gradient(1200px 700px at 50% 0%, rgba(65,31,18,0.38) 0%, rgba(8,8,8,0.96) 70%), linear-gradient(180deg, #060606 0%, #0b0b0b 100%);
}

/* Global page transition: blur + liquid glass (0.5s) */
body {
  --page-trans-dur: 0.5s;
  filter: blur(1px);
  animation: pageRevealBlur var(--page-trans-dur) ease both;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(8px) saturate(108%);
  backdrop-filter: blur(8px) saturate(108%);
  opacity: 1;
  animation: pageRevealGlass var(--page-trans-dur) ease both;
  transition: opacity var(--page-trans-dur) ease;
}

@keyframes pageRevealBlur {
  from { filter: blur(1px); }
  to { filter: blur(0); }
}

@keyframes pageRevealGlass {
  from { opacity: 1; }
  to { opacity: 0; }
}

body.page-exit {
  animation: pageLeaveBlur var(--page-trans-dur) ease forwards !important;
  pointer-events: none;
}

body.page-exit::after {
  animation: pageLeaveGlass var(--page-trans-dur) ease forwards !important;
}

@keyframes pageLeaveBlur {
  from { filter: blur(0); }
  to { filter: blur(1px); }
}

@keyframes pageLeaveGlass {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  body {
    animation: none !important;
    filter: none !important;
  }
  body::after {
    animation: none !important;
    opacity: 0 !important;
    transition: none !important;
  }
  body.page-exit {
    filter: none !important;
    transition: none !important;
  }
}

/* ===== Booking Liquid Glass ===== */
.pe-booking,
#reservation .pe-booking,
#agenda-reservation .pe-booking {
  position: relative;
  overflow: hidden;
  padding-bottom: 24px;
  border-radius: 5px;
  border: 1px solid rgba(245, 240, 232, 0.24);
  background:
    linear-gradient(155deg, rgba(239, 178, 81, 0.2) 0%, rgba(76, 203, 57, 0) 36%, rgba(255, 255, 255, 0.03) 100%),
    linear-gradient(180deg, rgba(75, 165, 78, 0) 0%, rgba(12, 12, 12, 0.2) 100%);
  -webkit-backdrop-filter: blur(10px) saturate(132%);
  backdrop-filter: blur(10px) saturate(132%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    0 18px 42px rgba(0, 0, 0, 0.36);
}

.pe-booking::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0.08) 28%, rgba(255, 255, 255, 0.00) 58%);
}

.pe-booking::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 48% 42% at 88% 12%, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 72%);
}

.pe-booking > * {
  position: relative;
  z-index: 1;
}

/* Reset local minimal pour eviter les collisions avec les styles globaux */
.pe-booking button { margin-top: 0; }
.pe-booking input,
.pe-booking select,
.pe-booking textarea { margin: 0; }

/* Grilles et tuiles parfaitement homogenes */
.pe-booking__dow,
.pe-booking__grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: stretch;
}

.pe-booking__day,
.pe-booking__day-empty,
.pe-booking__day-skeleton {
  width: 100%;
  min-width: 0;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 0;
  line-height: 1;
}

.pe-booking__day {
  min-height: 0;
}

.pe-booking__times-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pe-booking__time-btn {
  min-width: 0;
  text-align: center;
}

/* Typographie harmonisee avec le site */
.pe-booking,
.pe-booking button,
.pe-booking input,
.pe-booking select,
.pe-booking textarea {
  font-family: var(--font-body);
}

.pe-booking__day,
.pe-booking__month-btn {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Fleches mois: triangle CSS, centre et net */
.pe-booking__month-btn {
  display: grid;
  place-items: center;
  font-size: 0;
  line-height: 0;
  color: transparent;
  border-radius: 999px;
}

.pe-booking__month-btn::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.pe-booking__month-btn[data-action="prev"]::before {
  border-right: 8px solid rgba(25, 20, 15, 0.86);
}

.pe-booking__month-btn[data-action="next"]::before {
  border-left: 8px solid rgba(25, 20, 15, 0.86);
}

.pe-booking__month-btn:disabled::before {
  border-right-color: rgba(25, 20, 15, 0.34);
  border-left-color: rgba(25, 20, 15, 0.34);
}

.pe-booking__people-btn,
.pe-booking__time-btn,
.pe-booking__cta {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pe-booking__title,
.pe-booking__sub {
  color: #ffe4c2;
}

.pe-booking__month-label,
.pe-booking__dow span {
  color: #ffe4c2;
}

.pe-booking__day:hover:not(:disabled):not(.is-selected),
.pe-booking__day:active:not(:disabled):not(.is-selected),
.pe-booking__day:focus-visible:not(:disabled):not(.is-selected) {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #221a12 !important;
}

@media (max-width: 768px) {
  .pe-booking,
  #reservation .pe-booking,
  #agenda-reservation .pe-booking {
    padding-bottom: 24px;
  }
  .pe-booking__times-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .pe-booking,
  #reservation .pe-booking,
  #agenda-reservation .pe-booking {
    background: rgba(20, 18, 16, 0.90);
  }
}

/* ===== Btn Secondary: Liquid Glass ===== */
.btn-secondary {
  position: relative;
  overflow: hidden;
  border-radius: 3px !important;
  border: 1px solid rgba(245, 240, 232, 0.34) !important;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.10) 36%, rgba(255, 255, 255, 0.03) 100%),
    linear-gradient(180deg, rgba(12, 12, 12, 0.2) 0%, rgba(12, 12, 12, 0.2) 100%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(128%);
  backdrop-filter: blur(16px) saturate(128%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.30),
    0 14px 30px rgba(0, 0, 0, 0.28);
}

.btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.08) 32%, rgba(255, 255, 255, 0.00) 60%);
}

.btn-secondary:hover {
  border-color: rgba(245, 240, 232, 0.55) !important;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0.14) 36%, rgba(255, 255, 255, 0.05) 100%),
    linear-gradient(180deg, rgba(14, 14, 14, 0.62) 0%, rgba(14, 14, 14, 0.44) 100%) !important;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .btn-secondary {
    background: rgba(26, 22, 18, 0.88) !important;
  }
}

/* ===== Navbar Canonique (normalisation cross-pages) ===== */
#navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  z-index: 10020;
  height: var(--nav-h);
  min-height: var(--nav-h);
  margin: 0;
  padding: 0 40px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  isolation: isolate;
  background: rgba(0, 0, 0, 0.8) !important;
  -webkit-backdrop-filter: blur(4px) saturate(115%);
  backdrop-filter: blur(4px) saturate(115%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

#navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 35%, rgba(255, 255, 255, 0) 60%);
}

#navbar > * {
  position: relative;
  z-index: 1;
}

#navbar a,
#navbar button {
  margin: 0;
  line-height: 1;
}

.nav-brand {
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
}

.nav-brand img {
  height: 56px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
  margin-left: auto;
  list-style: none;
}

.nav-links li {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  height: 100%;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-soft);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #ffffff;
}

.nav-cta {
  align-self: center;
  margin-left: 42px;
  margin-right: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  background: #d07755 !important;
  border: 1px solid #d07755 !important;
  color: #0d0d0d !important;
  padding: 10px 22px;
  border-radius: 0 !important;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.nav-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: calc(0.78rem + 23px);
  padding: 0 15px;
  margin-left: 10px !important;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(0, 0, 0, 0.35);
  border-radius: 0px;
  transition:all 0.12s ease-in-out;
  transform: translateY(-1px);
}

.nav-cart:hover {
  filter: brightness(1.08);
  border-color: #D07755;
  border-radius: 17px;
  }

.nav-cart img {
  width: 22px;
  height: 22px;
  display: block;
  filter: brightness(0) invert(1);
}

.cart-count-badge {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #c61f1f;
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
}

.cart-count-badge.is-visible {
  display: inline-flex;
}

.nav-cart .cart-count-badge {
  position: absolute;
  top: -6px;
  right: -6px;
}

.nav-cta-quick,
.nav-hamburger {
  display: none !important;
}

@media (min-width: 769px) {
  #navbar {
    position: fixed !important;
  }
  .nav-links {
    position: absolute !important;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0;
  }
  .nav-cta {
    margin-left: auto !important;
    margin-right: 0 !important;
  }
  .nav-cart {
    margin-left: 12px;
    margin-right: 0;
  }
}

@media (max-width: 950px) {
  #navbar {
    padding: 0 20px;
  }
  .nav-links {
    display: none !important;
  }
  .nav-cta {
    display: inline-flex !important;
    margin-left: auto !important;
    margin-right: 8px !important;
  }
  .nav-cart {
    height: calc(0.68rem + 20px);
    padding: 0 24px;
    margin-left: 0;
    margin-right: 8px;
  }
  .nav-cta {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }
  .nav-hamburger {
    display: inline-flex !important;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(0, 0, 0, 0.72);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    cursor: pointer;
    padding: 0;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .nav-hamburger span {
    width: 18px;
    height: 2px;
    background: #f5f0e8;
    display: block;
  }
  .nav-brand img {
    height: 56px;
  }
}

/* Mobile side menu (no gradient) */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: auto !important;
  right: 0 !important;
  width: min(82vw, 320px);
  height: calc(100vh - var(--nav-h));
  background: rgba(0, 0, 0, 0.88);
  -webkit-backdrop-filter: blur(4px) saturate(110%);
  backdrop-filter: blur(4px) saturate(110%);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: -14px 0 28px rgba(0, 0, 0, 0.32);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1200;
}

.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu a {
  color: #f5f0e8;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a.is-active {
  color: #d07755;
}

.mobile-menu .nav-cta-mobile {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #d07755;
  background: #d07755;
  color: #0d0d0d;
  text-align: center;
  font-weight: 700;
  border-radius: 0;
}

.mobile-menu .nav-cta-mobile .cart-count-badge {
  position: static;
}

@media (max-width: 768px) {
  .nav-cart {
    display: none !important;
  }

  .mobile-menu .nav-cta-mobile {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .mobile-menu .nav-cta-mobile:hover {
    background: #d07755;
    color: #ffffff;
  }
}

body.nav-open {
  overflow: hidden;
}

/* ===== Carte Cadeau: module style reservation ===== */
body.page-carte-cadeau .gift-form-shell {
  margin-bottom:40px;
  position: relative;
  overflow: hidden;
  border-radius: 3px !important;
  border: 1px solid rgba(245, 240, 232, 0.24) !important;
  background:
    linear-gradient(155deg, rgba(1, 0, 0, 0.311) 0%, rgba(255, 255, 255, 0.06) 36%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(180deg, rgba(12, 12, 12, 0.178) 0%, rgba(12, 12, 12, 0) 100%) !important;
  -webkit-backdrop-filter: blur(1px) saturate(132%);
  backdrop-filter: blur(2px) saturate(132%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 18px 42px rgba(0, 0, 0, 0.36) !important;
  color: #f5f0e8 !important;
}

body.page-carte-cadeau .gift-form-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 32%, rgba(255, 255, 255, 0) 60%);
}

body.page-carte-cadeau .gift-form-shell > * {
  position: relative;
  z-index: 1;
}

body.page-carte-cadeau .gift-form-shell h2,
body.page-carte-cadeau .gift-sub,
body.page-carte-cadeau .gift-form label,
body.page-carte-cadeau .meta-line,
body.page-carte-cadeau .legal {
  color: #ffe4c2 !important;
}

body.page-carte-cadeau .gift-form input,
body.page-carte-cadeau .gift-form select,
body.page-carte-cadeau .gift-form textarea {
  background: #ffffff !important;
  color: #1f1710 !important;
  border: 1px solid rgba(20, 16, 10, 0.2);
  border-radius: 3px !important;
}

body.page-carte-cadeau .gift-form .cta {
  border-radius: 3px !important;
}

/* ===== Panier & Validation ===== */
body.page-panier,
body.page-validation {
  background: radial-gradient(1200px 700px at 50% 0%, rgba(65,31,18,0.32) 0%, rgba(8,8,8,0.96) 70%), linear-gradient(180deg, #070707 0%, #0a0a0a 100%);
}

.checkout-shell {
  padding-bottom: 90px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.checkout-card h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 16px;
}

.cart-lines {
  display: grid;
  gap: 12px;
}

.cart-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px dashed rgba(208,119,85,0.24);
  padding-bottom: 10px;
}

.cart-title {
  color: var(--white);
  font-weight: 600;
}

.cart-sub {
  color: var(--white-soft);
  font-size: 0.85rem;
}

.cart-side {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

.cart-remove {
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  color: var(--white-soft);
  padding: 6px 10px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.cart-total {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  font-size: 1rem;
}

.checkout-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.checkout-status {
  margin-top: 10px;
  color: var(--white-soft);
  font-size: 0.85rem;
}

.checkout-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.checkout-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px dashed rgba(208,119,85,0.24);
  padding-bottom: 8px;
  color: var(--white-soft);
}

.checkout-list .cart-sub {
  display: block;
  margin-top: 4px;
  font-size: 0.92em;
  opacity: 0.82;
}

.checkout-total {
  margin-top: 14px;
  color: var(--white);
}

.checkout-form {
  display: grid;
  gap: 12px;
}

.checkout-form label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffe4c2;
  margin-bottom: 4px;
  display: block;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.92);
  color: #1f1710;
  border: 1px solid rgba(20,16,10,0.2);
  border-radius: 3px;
  padding: 11px 12px;
  font: inherit;
}

.checkout-form textarea {
  min-height: 110px;
  resize: vertical;
}

.is-disabled {
  pointer-events: none;
  opacity: 0.55;
}

@media (max-width: 980px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}
/* Loading states for action buttons (sync/fetch/payment). */
.btn-primary,
.btn-secondary,
.cta {
  position: relative;
}

.btn-primary.is-loading,
.btn-secondary.is-loading,
.cta.is-loading {
  color: transparent !important;
  pointer-events: none;
}

.btn-primary.is-loading::after,
.btn-secondary.is-loading::after,
.cta.is-loading::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  margin-left: -8px;
  margin-top: -8px;
  border-radius: 50%;
  border: 2px solid rgba(208, 119, 85, 0.28);
  border-top-color: #d07755;
  animation: btnSpin 0.7s linear infinite;
}

@keyframes btnSpin {
  to {
    transform: rotate(360deg);
  }
}

/* Skeleton loaders for data-driven content areas */
.data-loading {
  display: grid;
  gap: 12px;
}

.data-loading__line {
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(255, 228, 194, 0.1) 0%, rgba(255, 228, 194, 0.22) 50%, rgba(255, 228, 194, 0.1) 100%);
  background-size: 220% 100%;
  animation: dataShimmer 1.1s ease-in-out infinite;
}

.data-loading__line.is-title {
  height: 22px;
  width: 60%;
}

.data-loading__line.is-short {
  width: 40%;
}

@keyframes dataShimmer {
  0% {
    background-position: 120% 0;
  }
  100% {
    background-position: -120% 0;
  }
}

.checkout-back-btn {
  margin-bottom: 18px;
}

.checkout-processing-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(36% 30% at 16% 12%, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 68%),
    radial-gradient(42% 34% at 82% 86%, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 72%),
    linear-gradient(140deg, rgba(208, 119, 85, 0.42), rgba(208, 119, 85, 0.28)),
    rgba(12, 10, 10, 0.48);
  backdrop-filter: blur(10px) saturate(155%) contrast(105%);
  -webkit-backdrop-filter: blur(10px) saturate(155%) contrast(105%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
    visibility 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.checkout-processing-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.checkout-processing-overlay__panel {
  min-width: 260px;
  max-width: 420px;
  padding: 24px 28px;
  text-align: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 228, 194, 0.46);
  background:
    radial-gradient(130% 140% at 15% 10%, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.08) 48%, transparent 100%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02) 45%, rgba(255, 255, 255, 0.11) 100%),
    rgba(208, 119, 85, 0.24);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.38), inset 0 -10px 22px rgba(255, 255, 255, 0.05);
}

.checkout-processing-overlay__spinner {
  width: 34px;
  height: 34px;
  margin: 0 auto 14px;
  border-radius: 50%;
  border: 3px solid rgba(255, 228, 194, 0.28);
  border-top-color: #d07755;
  animation: checkoutOverlaySpin 0.8s linear infinite;
}

.checkout-processing-overlay__text {
  margin: 0;
  color: #ffe4c2;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@keyframes checkoutOverlaySpin {
  to {
    transform: rotate(360deg);
  }
}

/* ===== 2026-04 UI overrides ===== */
.page-index .rituels-grid {
  background: #d07755;
  padding: 2px;
}

.page-index .rituel-card {
  background: rgba(10, 10, 10, 0.9);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 63px;
}

.page-index .rituel-card:hover {
  background: rgba(19, 19, 19, 0.95);
}

.page-index .rituel-accent {
  top: auto;
  right: auto;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  color: #d07755 !important;
  border-color: #d07755 !important;
  background: rgba(208, 119, 85, 0.12);
}

.page-index .rituel-icon {
  width: 78px;
  height: 78px;
}

.page-index .rituel-tags {
  align-items: center;
}

.page-index .accent-orange,
.page-index .accent-violet,
.page-index .accent-blue,
.page-index .accent-gold {
  color: #d07755 !important;
  border-color: #d07755 !important;
}

.page-index #tarifs::before {
  opacity: 0.4;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) calc(100% - 100px), #000 100%),
    center / cover no-repeat url("img/dallesterracotta.webp");
  filter: blur(3px);
  transform: scale(1.03);
}

.page-index .horaires-title {
  font-size: clamp(1rem, 2.6vw, 1.3rem);
  letter-spacing: 0.16em;
}

.page-index .horaires-note {
  font-size: clamp(0.92rem, 2.1vw, 1.08rem);
}

footer::before {
  filter: blur(3px);
  transform: scale(1.04);
  animation: footerFloat 14s ease-in-out infinite alternate;
}

@keyframes footerFloat {
  from {
    transform: translateY(0) scale(1.04);
  }
  to {
    transform: translateY(-10px) scale(1.07);
  }
}

@media (max-width: 768px) {
  .footer-nav-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
  }

  .footer-grid > :first-child,
  .footer-grid > :last-child {
    grid-column: span 2;
  }
}

.back-to-top {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 1300;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #f5f0e8;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.07)),
    rgba(208, 119, 85, 0.3);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    inset 0 -8px 20px rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(14px) saturate(155%);
  backdrop-filter: blur(14px) saturate(155%);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0.96;
  transform: translateX(-50%);
  pointer-events: auto;
  transition: opacity 0.28s ease, transform 0.28s ease, box-shadow 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateX(-50%);
  pointer-events: auto;
}

.back-to-top:hover {
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    inset 0 -8px 20px rgba(255, 255, 255, 0.08);
}

.back-to-top {
  font-size: 0;
}

.back-to-top::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 22px;
  background-image: url("picto/up.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translate(-50%, -50%);
}


/* ===== Emergency Fix: Always-visible Navbar + Back To Top ===== */
body {
  filter: none !important;
  animation: none !important;
}

body.page-exit {
  filter: none !important;
  animation: none !important;
}

#navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 2147483000 !important;
}

.back-to-top {
  position: fixed !important;
  left: 50% !important;
  bottom: 18px !important;
  z-index: 2147483001 !important;
  display: grid !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateX(-50%) !important;
}

.reservation-end-logo {
  display: block;
  width: min(180px, 62vw);
  height: auto;
  margin: 20px auto 20px;
  opacity: 0.95;
}

.footer-seo-links {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: rgba(245, 240, 232, 0.72);
  line-height: 1.8;
  text-align: center;
}

.footer-seo-links a {
  color: rgba(245, 240, 232, 0.82);
  text-decoration: none;
}

.footer-seo-links a:hover {
  color: var(--gold);
}

.footer-soins {
  margin-top: 14px;
}

.footer-soins-title {
  margin: 0 0 6px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #D07755;
}

.footer-soins-links {
  font-size: 0.84rem;
  line-height: 1.65;
  color: rgba(245, 240, 232, 0.82);
}

.footer-soins-links a {
  color: rgba(245, 240, 232, 0.82);
  text-decoration: none;
}

.footer-soins-links a:hover {
  color: var(--gold);
}

.home-blog-section {
  padding: 84px 0 62px;
  background:
    radial-gradient(circle at 50% 100%, rgba(208, 119, 85, 0.2) 0%, rgba(0, 0, 0, 0) 56%),
    linear-gradient(180deg, #101010 0%, #0b0b0b 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-blog-page {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.home-blog-hero {
  text-align: center;
  margin-bottom: 30px;
}

.home-blog-kicker {
  margin: 0 0 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.72rem;
}

.home-blog-title {
  margin: 0 0 12px;
  font-family: "Aboreto", "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  line-height: 1.2;
}

.home-blog-sub {
  margin: 0 auto;
  max-width: 740px;
  color: var(--white-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.home-blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(208, 119, 85, 0.35);
  text-decoration: none;
  color: inherit;
  background: linear-gradient(180deg, rgba(24, 19, 17, 0.98), rgba(10, 10, 10, 0.98));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(208, 119, 85, 0.65);
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.4);
}

.home-blog-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.home-blog-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.home-blog-card-title {
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.35;
}

.home-blog-card-desc {
  margin: 0;
  color: var(--white-soft);
  font-size: 0.94rem;
  line-height: 1.62;
  flex: 1;
}

.home-blog-card-cta {
  margin-top: 4px;
  color: var(--terracotta-soft);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

@media (max-width: 1040px) {
  .home-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .home-blog-section {
    padding: 64px 0 48px;
  }

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


