 :root {
    --prussian: #042047;
    --prussian-dark: #11112D;
    --walnut: #492D06;
    --silver: #565656;
    --bronze: #C57A30;
    --black: #080808;
    --white: #F8F5F0;
    --grey: #B0A89A;
    --grey-light: #E8E4DC;
    --font-display: 'Cinzel', serif;
    --font-body: Georgia, 'EB Garamond', serif;
    --font-accent: 'Cormorant Garamond', serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--prussian-dark);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ── TEXTURE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.3;
  }

  /* ── DECORATIVE DIAMOND ── */
  .diamond {
    display: inline-block;
    width: 8px; height: 8px;
    background: var(--bronze);
    transform: rotate(45deg);
    flex-shrink: 0;
  }
  .diamond-sm { width: 5px; height: 5px; }
  .diamond-lg { width: 12px; height: 12px; }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 60px;
    background: linear-gradient(to bottom, rgba(4,32,71,0.98) 0%, rgba(4,32,71,0.85) 100%);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(197,122,48,0.2);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
  }

  .logo-emblem {
    width: 52px; height: 52px;
    position: relative;
  }

  .logo-diamond-outer {
    width: 52px; height: 52px;
    background: var(--prussian);
    border: 2px solid var(--bronze);
    transform: rotate(45deg);
    position: absolute;
    top: 0; left: 0;
  }

  .logo-diamond-inner {
    width: 36px; height: 36px;
    border: 1px solid rgba(197,122,48,0.4);
    transform: rotate(45deg);
    position: absolute;
    top: 8px; left: 8px;
  }

  .logo-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }

  .logo-for {
    font-family: var(--font-accent);
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--bronze);
    font-style: italic;
  }

  .logo-main {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--white);
  }

  .logo-main span { color: var(--bronze); }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
  }

  .nav-links a {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--grey);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 1px;
    background: var(--bronze);
    transform: scaleX(0);
    transition: transform 0.3s;
  }

  .nav-links a:hover { color: var(--white); }
  .nav-links a:hover::after { transform: scaleX(1); }

  .nav-cta {
    background: transparent;
    border: 1px solid var(--bronze);
    color: var(--bronze) !important;
    padding: 10px 24px;
    font-family: var(--font-display) !important;
    font-size: 10px !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    transition: all 0.3s !important;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  }

  .nav-cta:hover {
    background: var(--bronze) !important;
    color: var(--prussian-dark) !important;
  }

  .nav-cta::after { display: none !important; }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 60px 80px;
    position: relative;
    z-index: 2;
  }

  .hero-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    animation: fadeUp 0.8s 0.2s both;
  }

  .hero-tag span {
    font-family: var(--font-display);
    font-size: 9px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--bronze);
  }

  .hero-quote {
    font-family: var(--font-accent);
    font-size: clamp(28px, 3.5vw, 46px);
    font-style: italic;
    font-weight: 300;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 48px;
    animation: fadeUp 0.8s 0.4s both;
  }

  .hero-quote em {
    color: var(--bronze);
    font-style: normal;
  }

  .hero-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeUp 0.8s 0.6s both;
  }

  .hero-divider-line {
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--bronze));
  }

  .hero-divider-line.right {
    background: linear-gradient(to left, transparent, var(--bronze));
  }

  .hero-cta-group {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeUp 0.8s 0.8s both;
  }

  .btn-primary {
    background: var(--bronze);
    color: var(--prussian-dark);
    padding: 16px 40px;
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    transition: all 0.3s;
    display: inline-block;
  }

  .btn-primary:hover {
    background: var(--white);
    transform: translateY(-2px);
  }

  .btn-ghost {
    color: var(--grey);
    font-family: var(--font-accent);
    font-size: 14px;
    font-style: italic;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .btn-ghost:hover { color: var(--white); }

  .btn-ghost::after {
    content: '→';
    font-style: normal;
    transition: transform 0.3s;
  }

  .btn-ghost:hover::after { transform: translateX(4px); }

  .hero-right {
    position: relative;
    overflow: hidden;
  }

  .hero-video-wrap {
    position: absolute;
    inset: 0;
  }

  .hero-video-wrap video,
  .hero-video-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.6;
  }

  .hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--prussian-dark) 0%, transparent 50%, rgba(73,45,6,0.3) 100%);
  }

  .hero-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    border: 2px solid var(--bronze);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(4,32,71,0.4);
    backdrop-filter: blur(4px);
    text-decoration: none;
  }

  .hero-play-btn:hover {
    background: var(--bronze);
    transform: translate(-50%, -50%) scale(1.1);
  }

  .play-triangle {
    width: 0; height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 20px solid var(--bronze);
    margin-left: 4px;
    transition: border-color 0.3s;
  }

  .hero-play-btn:hover .play-triangle { border-left-color: var(--prussian-dark); }

  /* Diagonal separator between hero columns */
  .hero-left::after {
    content: '';
    position: absolute;
    right: -30px; top: 0; bottom: 0;
    width: 60px;
    background: var(--prussian-dark);
    clip-path: polygon(0 0, 40% 0, 100% 100%, 0% 100%);
    z-index: 3;
  }

  /* ── SECTION TITLES ── */
  .section-header {
    text-align: center;
    margin-bottom: 64px;
  }

  .section-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
  }

  .section-eyebrow span {
    font-family: var(--font-display);
    font-size: 9px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--bronze);
  }

  .section-eyebrow-line {
    width: 40px; height: 1px;
    background: var(--bronze);
    opacity: 0.5;
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.2;
  }

  .section-title em {
    color: var(--bronze);
    font-style: normal;
  }

  .section-subtitle {
    font-family: var(--font-accent);
    font-size: 18px;
    font-style: italic;
    color: var(--grey);
    margin-top: 12px;
  }

  /* ── SERVICES ── */
  #services {
    padding: 120px 60px;
    background: var(--prussian);
    position: relative;
    overflow: hidden;
  }

  #services::before {
    content: '';
    position: absolute;
    top: -2px; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--bronze), transparent);
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .service-card {
    position: relative;
    overflow: hidden;
    background: var(--prussian-dark);
    cursor: pointer;
    group: true;
  }

  .service-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    opacity: 0.7;
    transition: opacity 0.5s, transform 0.5s;
    filter: sepia(20%);
  }

  .service-card:hover .service-img {
    opacity: 0.4;
    transform: scale(1.05);
  }

  .service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4,32,71,0.95) 0%, rgba(4,32,71,0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px 32px;
    transition: all 0.4s;
  }

  .service-card:hover .service-overlay {
    background: linear-gradient(to top, rgba(73,45,6,0.95) 0%, rgba(4,32,71,0.7) 60%, rgba(4,32,71,0.2) 100%);
  }

  .service-num {
    position: absolute;
    top: 24px; right: 24px;
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--bronze);
    opacity: 0.7;
  }

  .service-icon {
    width: 36px; height: 36px;
    margin-bottom: 16px;
    opacity: 0.8;
  }

  .service-name {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
  }

  .service-desc {
    font-family: var(--font-accent);
    font-size: 15px;
    font-style: italic;
    color: var(--grey-light);
    line-height: 1.5;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s 0.1s;
  }

  .service-card:hover .service-desc {
    opacity: 1;
    transform: translateY(0);
  }

  .service-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--bronze);
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.4s 0.2s;
  }

  .service-card:hover .service-link { opacity: 1; }

  .service-link-line {
    flex: 1;
    max-width: 30px;
    height: 1px;
    background: var(--bronze);
    transition: max-width 0.3s;
  }

  .service-link:hover .service-link-line { max-width: 50px; }

  /* ── BEFORE/AFTER ── */
  #transformations {
    padding: 120px 60px;
    background: var(--prussian-dark);
    position: relative;
  }

  .transformations-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }

  .ba-frame {
    position: relative;
    border: 1px solid rgba(197,122,48,0.3);
  }

  .ba-frame::before, .ba-frame::after {
    content: '';
    position: absolute;
    width: 20px; height: 20px;
    border-color: var(--bronze);
    border-style: solid;
    z-index: 2;
  }

  .ba-frame::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
  .ba-frame::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

  .ba-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  .ba-img-wrap {
    position: relative;
    overflow: hidden;
  }

  .ba-img-wrap img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    filter: sepia(15%);
  }

  .ba-label {
    position: absolute;
    top: 16px; left: 16px;
    font-family: var(--font-display);
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: rgba(4,32,71,0.8);
    color: var(--bronze);
    padding: 6px 12px;
    backdrop-filter: blur(4px);
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 100%, 6px 100%);
  }

  .ba-content {
    padding: 20px;
  }

  .ba-text .section-header { text-align: left; }
  .ba-text .section-eyebrow { justify-content: flex-start; }

  .ba-text p {
    font-family: var(--font-accent);
    font-size: 17px;
    color: var(--grey-light);
    line-height: 1.8;
    margin-bottom: 32px;
  }

  /* ── INFOS / MAP ── */
  #infos {
    padding: 120px 60px;
    background: var(--prussian);
    position: relative;
  }

  #infos::before {
    content: '';
    position: absolute;
    top: -2px; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--bronze), transparent);
  }

  .infos-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }

  .infos-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .info-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 28px;
    background: rgba(4,32,71,0.6);
    border: 1px solid rgba(197,122,48,0.15);
    border-left: 3px solid var(--bronze);
    transition: all 0.3s;
  }

  .info-badge:hover {
    background: rgba(73,45,6,0.2);
    border-color: rgba(197,122,48,0.4);
    transform: translateX(4px);
  }

  .info-badge-icon {
    width: 32px; height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bronze);
    font-size: 18px;
    flex-shrink: 0;
  }

  .info-badge p {
    font-family: var(--font-accent);
    font-size: 15px;
    color: var(--grey-light);
  }

  .map-frame {
    position: relative;
    border: 1px solid rgba(197,122,48,0.3);
    overflow: hidden;
  }

  .map-frame::before, .map-frame::after {
    content: '';
    position: absolute;
    width: 24px; height: 24px;
    border-color: var(--bronze);
    border-style: solid;
    z-index: 3;
  }

  .map-frame::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
  .map-frame::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

  .map-frame iframe {
    width: 100%;
    height: 320px;
    border: none;
    display: block;
    filter: sepia(30%) saturate(0.7) brightness(0.7) hue-rotate(180deg);
    opacity: 0.85;
  }

  .map-cta {
    padding: 20px 28px;
    background: rgba(4,32,71,0.8);
    border-top: 1px solid rgba(197,122,48,0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .map-address {
    font-family: var(--font-accent);
    font-size: 14px;
    font-style: italic;
    color: var(--grey);
  }

  .map-directions {
    font-family: var(--font-display);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--bronze);
    text-decoration: none;
    transition: color 0.3s;
  }

  .map-directions:hover { color: var(--white); }

  /* ── HORAIRES + RÉSA ── */
  #reservation {
    padding: 120px 60px;
    background: var(--prussian-dark);
    position: relative;
    overflow: hidden;
  }

  /* Background ornament */
  #reservation::before {
    content: '♦';
    position: absolute;
    font-size: 500px;
    color: rgba(197,122,48,0.025);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    line-height: 1;
  }

  .resa-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .horaires-card {
    background: var(--prussian);
    border: 1px solid rgba(197,122,48,0.2);
    position: relative;
    overflow: hidden;
  }

  .horaires-card::before, .horaires-card::after {
    content: '';
    position: absolute;
    width: 24px; height: 24px;
    border-color: var(--bronze);
    border-style: solid;
    z-index: 2;
  }

  .horaires-card::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
  .horaires-card::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

  .horaires-header {
    padding: 24px 32px;
    border-bottom: 1px solid rgba(197,122,48,0.2);
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .horaires-title {
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--white);
  }

  .horaires-list {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .horaire-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(86,86,86,0.15);
  }

  .horaire-row:last-child { border-bottom: none; }

  .horaire-day {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey-light);
  }

  .horaire-time {
    font-family: var(--font-accent);
    font-size: 16px;
    color: var(--bronze);
  }

  .horaire-closed {
    font-family: var(--font-accent);
    font-size: 13px;
    font-style: italic;
    color: var(--silver);
  }

  .resa-content { }

  .resa-text {
    font-family: var(--font-accent);
    font-size: 17px;
    color: var(--grey-light);
    line-height: 1.8;
    margin-bottom: 40px;
  }

  .resa-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .btn-resa {
    display: inline-block;
    background: var(--bronze);
    color: var(--prussian-dark);
    padding: 18px 48px;
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }

  .btn-resa::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.2);
    transform: translateX(-100%) skewX(-10deg);
    transition: transform 0.4s;
  }

  .btn-resa:hover::before { transform: translateX(100%) skewX(-10deg); }
  .btn-resa:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(197,122,48,0.3); }

  .social-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 8px;
  }

  .social-label {
    font-family: var(--font-display);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--silver);
  }

  .social-icons {
    display: flex;
    gap: 12px;
  }

  .social-icon {
    width: 40px; height: 40px;
    border: 1px solid rgba(197,122,48,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--grey);
    font-size: 16px;
    transition: all 0.3s;
    transform: rotate(45deg);
  }

  .social-icon span {
    transform: rotate(-45deg);
    display: block;
    font-size: 13px;
  }

  .social-icon:hover {
    background: var(--bronze);
    color: var(--prussian-dark);
    border-color: var(--bronze);
  }

  /* ── TARIFS ── */
  #tarifs {
    padding: 120px 60px;
    background: var(--prussian);
    position: relative;
  }

  #tarifs::before {
    content: '';
    position: absolute;
    top: -2px; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--bronze), transparent);
  }

  .tarifs-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .tarif-card {
    background: var(--prussian-dark);
    border: 1px solid rgba(197,122,48,0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
  }

  .tarif-card:hover {
    border-color: rgba(197,122,48,0.4);
    transform: translateY(-4px);
  }

  .tarif-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--bronze), transparent);
    transform: scaleX(0);
    transition: transform 0.4s;
  }

  .tarif-card:hover::after { transform: scaleX(1); }

  .tarif-header {
    padding: 24px 28px;
    border-bottom: 1px solid rgba(197,122,48,0.15);
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .tarif-name {
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
  }

  .tarif-list {
    padding: 24px 28px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .tarif-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
  }

  .tarif-item-name {
    font-family: var(--font-accent);
    font-size: 15px;
    color: var(--grey-light);
  }

  .tarif-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(86,86,86,0.3);
    margin-bottom: 4px;
  }

  .tarif-price {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--bronze);
    white-space: nowrap;
  }

  /* ── CONSEILS ── */
  #conseils {
    padding: 120px 60px;
    background: var(--prussian-dark);
  }

  .conseils-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .conseil-card {
    padding: 40px 32px;
    border: 1px solid rgba(197,122,48,0.12);
    background: rgba(4,32,71,0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
  }

  .conseil-card:hover {
    border-color: rgba(197,122,48,0.3);
    background: rgba(73,45,6,0.15);
  }

  .conseil-num {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: rgba(197,122,48,0.12);
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.4s;
  }

  .conseil-card:hover .conseil-num { color: rgba(197,122,48,0.25); }

  .conseil-title {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
  }

  .conseil-text {
    font-family: var(--font-accent);
    font-size: 15px;
    font-style: italic;
    color: var(--grey);
    line-height: 1.7;
  }

  /* ── FOOTER ── */
  footer {
    padding: 60px;
    background: var(--black);
    border-top: 1px solid rgba(197,122,48,0.2);
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }

  .footer-logo .logo-main { font-size: 18px; }

  .footer-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }

  .footer-links a {
    font-family: var(--font-display);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--silver);
    text-decoration: none;
    transition: color 0.3s;
  }

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

  .footer-copy {
    font-family: var(--font-accent);
    font-size: 13px;
    font-style: italic;
    color: var(--silver);
    opacity: 0.6;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

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

  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── ORNAMENTAL LINES ── */
  .ornament {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
    justify-content: center;
  }

  .ornament-line {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--bronze));
    width: 80px;
    opacity: 0.5;
  }

  .ornament-line.right {
    background: linear-gradient(to left, transparent, var(--bronze));
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-links { gap: 20px; display: none; }

    #hero { grid-template-columns: 1fr; }
    .hero-left { padding: 100px 24px 60px; }
    .hero-left::after { display: none; }
    .hero-right { height: 50vw; }

    #services { padding: 80px 24px; }
    .services-grid { grid-template-columns: 1fr; }

    #transformations { padding: 80px 24px; }
    .transformations-inner { grid-template-columns: 1fr; gap: 48px; }

    #infos { padding: 80px 24px; }
    .infos-grid { grid-template-columns: 1fr; }

    #reservation { padding: 80px 24px; }
    .resa-grid { grid-template-columns: 1fr; gap: 48px; }

    #tarifs { padding: 80px 24px; }
    .tarifs-grid { grid-template-columns: 1fr; }

    #conseils { padding: 80px 24px; }
    .conseils-grid { grid-template-columns: 1fr; }

    footer { padding: 40px 24px; }
    .footer-inner { flex-direction: column; text-align: center; }
  }

  /* ── CARROUSEL AVANT/APRÈS ── */
  .ba-carousel {
    position: relative;
    overflow: hidden;
  }
  .ba-slide {
    display: none;
    animation: baFade 0.5s ease;
  }
  .ba-slide.active {
    display: block;
  }
  @keyframes baFade {
    from { opacity: 0; transform: translateX(12px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  .ba-prev, .ba-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(4,32,71,0.75);
    border: 1px solid var(--bronze);
    color: var(--bronze);
    font-size: 28px;
    line-height: 1;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
    padding: 0;
  }
  .ba-prev { left: 8px; }
  .ba-next { right: 8px; }
  .ba-prev:hover, .ba-next:hover {
    background: var(--bronze);
    color: var(--prussian-dark);
  }
  .ba-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px 0 4px;
  }
  .ba-dot {
    width: 8px; height: 8px;
    background: rgba(197,122,48,0.25);
    transform: rotate(45deg);
    cursor: pointer;
    transition: background 0.25s;
    border: none;
  }
  .ba-dot.active {
    background: var(--bronze);
  }


  /* ══════════════════════════════════════════
     LOGO BLOCK
  ══════════════════════════════════════════ */
  .s4m-logo-block {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--prussian);
    border: 1px solid rgba(197,122,48,0.3);
    padding: 18px 24px;
    margin-bottom: 20px;
    position: relative;
  }
  .s4m-logo-block::before, .s4m-logo-block::after {
    content: '';
    position: absolute;
    width: 16px; height: 16px;
    border-color: var(--bronze); border-style: solid;
  }
  .s4m-logo-block::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
  .s4m-logo-block::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

  .s4m-logo-emblem {
    position: relative;
    width: 52px; height: 52px;
    flex-shrink: 0;
  }
  .s4m-diamond-outer {
    width: 52px; height: 52px;
    background: var(--prussian-dark);
    border: 2px solid var(--bronze);
    transform: rotate(45deg);
    position: absolute; top: 0; left: 0;
  }
  .s4m-diamond-inner {
    width: 36px; height: 36px;
    border: 1px solid rgba(197,122,48,0.4);
    transform: rotate(45deg);
    position: absolute; top: 8px; left: 8px;
  }
  .s4m-s4m-label {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 9px; font-weight: 700;
    letter-spacing: 1px; color: var(--bronze);
  }
  .s4m-logo-texts {
    display: flex; flex-direction: column; gap: 2px;
  }
  .s4m-logo-for {
    font-family: var(--font-accent);
    font-size: 10px; letter-spacing: 4px;
    text-transform: uppercase; color: var(--bronze);
    font-style: italic;
  }
  .s4m-logo-name {
    font-family: var(--font-display);
    font-size: 26px; font-weight: 700;
    letter-spacing: 3px; color: var(--white);
    line-height: 1;
  }
  .s4m-logo-name em { color: var(--bronze); font-style: normal; }
  .s4m-logo-since {
    font-family: var(--font-accent);
    font-size: 11px; font-style: italic;
    color: var(--silver); letter-spacing: 2px;
  }

  /* ══════════════════════════════════════════
     WIDGET AVIS GOOGLE
  ══════════════════════════════════════════ */
  .gw-wrapper {
    background: #07090f;
    border: 1px solid rgba(197,122,48,0.28);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  }

  /* En-tête note globale */
  .gw-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 18px 20px 12px;
    background: #0a0c16;
    border-bottom: 1px solid rgba(197,122,48,0.15);
  }
  .gw-brand-name {
    font-family: Georgia, serif;
    font-size: 15px; font-weight: 800;
    color: var(--white); margin-bottom: 5px;
    letter-spacing: .04em;
  }
  .gw-stars-row {
    display: flex; align-items: center; gap: 6px; margin-bottom: 3px;
  }
  .gw-stars  { color: #f4b942; font-size: 15px; letter-spacing: 1px; }
  .gw-score  { font-size: 14px; font-weight: 700; color: var(--white); }
  .gw-count  { font-size: 12px; color: rgba(176,168,154,0.7); }
  .gw-sub    { font-size: 12px; color: rgba(176,168,154,0.6); }
  .gw-google-icon { flex-shrink: 0; margin-top: 2px; }

  /* Plateformes */
  .gw-platforms {
    background: #0d1020;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(197,122,48,0.12);
  }
  .gw-plat-label {
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .1em; color: rgba(176,168,154,0.55); margin-bottom: 10px;
  }
  .gw-plat-grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 4px;
  }
  .gw-plat {
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
  }
  .gw-plat-name  { font-size: 11px; font-weight: 700; color: var(--bronze); margin-bottom: 2px; }
  .gw-plat-score { font-size: 13px; font-weight: 800; color: var(--white); }
  .gw-plat-count { font-size: 10px; color: rgba(176,168,154,0.5); }

  /* Carte avis */
  .gw-review-card {
    background: #0a0c16;
    padding: 16px 20px;
    border-top: 1px solid rgba(197,122,48,0.12);
  }
  .gw-review-head {
    display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
  }
  .gw-avatar {
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(4,32,71,0.9);
    border: 1px solid rgba(197,122,48,0.35);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; color: var(--bronze);
    flex-shrink: 0;
  }
  .gw-reviewer-info {
    display: flex; flex-direction: column; gap: 1px; flex: 1;
  }
  .gw-reviewer-name  { font-family: Georgia, serif; font-size: 13px; font-weight: 700; color: var(--white); }
  .gw-reviewer-date  { font-size: 11px; color: rgba(176,168,154,0.55); }
  .gw-review-stars   { color: #f4b942; font-size: 12px; }
  .gw-review-google  { flex-shrink: 0; }
  .gw-review-text {
    font-family: Georgia, serif;
    font-style: italic; font-size: 14px;
    line-height: 1.65; color: var(--grey-light);
    margin-bottom: 10px;
  }
  .gw-review-meta {
    font-size: 12px; color: rgba(176,168,154,0.55); line-height: 1.6;
  }
  .gw-review-meta strong { color: var(--grey-light); }