/* =========================
   RESET + BASE, ACCESSIBLE, DESKTOP FIRST
   ========================= */

/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default spacing */
* {
  margin: 0;
  padding: 0;
}

/* Root */
html {
  font-size: 100%;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Media elements */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Lists */
ul,
ol {
  list-style: none;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Text wrapping */
p,
h1,
h2,
h3,
h4 {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Accessible focus */
:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}

@font-face {
  font-family: "Barlow";
  src: url("/font/Barlow/Barlow-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("/font/Barlow/Barlow-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("/font/Barlow/Barlow-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("/font/Barlow/Barlow-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("/font/Barlow/Barlow-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Playfair Display, titres */
@font-face {
  font-family: "Playfair Display";
  src: url("/font/Playfair_Display/PlayfairDisplay-VariableFont_wght.ttf")
    format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("/font/Playfair_Display/PlayfairDisplay-Italic-VariableFont_wght.ttf")
    format("truetype");
  font-weight: 400 900;
  font-style: italic;
  font-display: swap;
}

/* =========================
   VARIABLES
   ========================= */

:root {
  /* Colors */
  --color-white: #f5f2ee;
  --color-black: #1b1b1b;
  --color-gold: #aa8454;
  /* --color-gold: #e4a853; */
  --color-light-gray: rgb(221, 217, 214);

  /* Typography */
  --font-text:
    "Barlow", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-title: "Playfair Display", Georgia, "Times New Roman", serif;

  /* Font sizes, rem only */
  --fs-16: 1rem;
  --fs-18: 1.125rem;
  --fs-20: 1.25rem;

  /* Titles, desktop first defaults */
  --h1: 6rem;
  --h2: 3rem;
  --h3: 1.75rem;
  --h4: 1.375rem;

  /* Line heights */
  --lh-text: 1.6;
  --lh-title: 1.15;

  /* Spacing */
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  /* Layout */
  --container-max: 1200px;
  --container-pad: 2rem;

  /* Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;

  /* Shadows, light and premium */
  --shadow-1: 0 8px 24px rgba(27, 27, 27, 0.08);

  /* Transitions */
  --ease: ease;
  --t-fast: 150ms var(--ease);
  --t-base: 250ms var(--ease);
}

/* =========================
   BASE STYLES
   ========================= */

body {
  font-family: var(--font-text);
  font-size: var(--fs-16);
  line-height: var(--lh-text);
  background: var(--color-white);
  color: var(--color-black);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-title);
  line-height: var(--lh-title);
  font-weight: 500;
  letter-spacing: 0.01em;
}

h1 {
  font-size: var(--h1);
}
h2 {
  font-size: var(--h2);
}
h3 {
  font-size: var(--h3);
}
h4 {
  font-size: var(--h4);
}

p {
  max-width: 70ch;
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

/* Desktop first, adjust down for smaller screens */
@media (max-width: 1024px) {
  :root {
    --h1: 3.5rem;
    --h2: 3rem;
    --h3: 2rem;
    --h4: 1.25rem;
    --container-pad: 1.5rem;
  }
}
@media (max-width: 800px) {
  :root {
    --h1: 2.5rem;
    --h2: 2rem;
    --h3: 1.5rem;
    --h4: 1.25rem;
    --container-pad: 1.5rem;
  }
}

@media (max-width: 640px) {
  :root {
    --h1: 2.1rem;
    --h2: 1.75rem;
    --h3: 1.35rem;
    --h4: 1.125rem;
    --container-pad: 1rem;
  }

  p {
    max-width: 100%;
  }
}

/* =========================
   NAVBAR LUXE, TRANSPARENT, SCROLL WHITE
   ========================= */

:root {
  --nav-h: 96px;
  --nav-h-scrolled: 74px;

  --nav-text: rgba(255, 255, 255, 0.95);
  --nav-text-muted: rgba(245, 242, 238, 0.75);

  --nav-text-dark: rgba(27, 27, 27, 0.92);
  --nav-text-dark-muted: rgba(27, 27, 27, 0.65);

  --nav-bg: rgba(245, 242, 238, 0);
  --nav-bg-scrolled: rgba(245, 242, 238, 0.96);

  --nav-border-scrolled: rgba(27, 27, 27, 0.08);

  --ease-luxe: cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow-nav: 0 12px 40px rgba(27, 27, 27, 0.1);
  --brand-offset: 30px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  pointer-events: none;
}

.nav {
  pointer-events: auto;
  height: var(--nav-h);
  transition:
    height 520ms var(--ease-luxe),
    background-color 520ms var(--ease-luxe),
    box-shadow 520ms var(--ease-luxe),
    border-color 520ms var(--ease-luxe);
  background: var(--nav-bg);
  border-bottom: 1px solid transparent;
  padding: 0 50px;
}

.nav.is-scrolled {
  height: var(--nav-h-scrolled);
  background: var(--nav-bg-scrolled);
  box-shadow: var(--shadow-nav);
  border-color: var(--nav-border-scrolled);
  backdrop-filter: blur(10px);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.nav__skip {
  position: absolute;
  left: var(--space-4);
  top: -60px;
  padding: 0.75rem 1rem;
  background: var(--color-white);
  color: var(--color-black);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
  transition: top var(--t-base);
}
.nav__skip:focus-visible {
  top: var(--space-4);
}

/* Left links */
.nav__left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
  min-width: 0;
}

.nav__link {
  font-family: var(--font-text);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nav-text);
  position: relative;
  padding: 0.25rem 0;
  font-weight: 600;
  text-align: center;
  transition:
    color var(--t-base),
    opacity var(--t-base),
    transform var(--t-base);
  text-shadow: black 0 0 10px;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0.9;
  transition:
    transform 520ms var(--ease-luxe),
    opacity var(--t-base);
}

.nav__link:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.nav__link:hover::after {
  transform: scaleX(1);
}

.nav.is-scrolled .nav__link {
  color: var(--nav-text-dark);
  text-shadow: none;
  font-weight: 500;
}
.nav.is-scrolled .nav__link::after {
  opacity: 0.55;
}

/* Brand centered */
.nav__brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(30px);
}

.nav__logo {
  height: 80px;
  width: auto;
  transition:
    height 520ms var(--ease-luxe),
    transform 520ms var(--ease-luxe),
    filter 520ms var(--ease-luxe);
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.16));
}

.nav.is-scrolled .nav__logo {
  height: 40px;
  filter: none;
  transform: translateY(-1px);
}
.nav.is-scrolled .nav__brand {
  transform: translateY(-1px);
}

/* Right actions */
.nav__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem;
  flex: 1;
  min-width: 0;
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--nav-text-muted);
  font-family: var(--font-text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.lang__link {
  color: inherit;
  opacity: 0.9;
  text-shadow: black 0 0 10px;
  font-weight: 600;
  transition:
    color var(--t-base),
    opacity var(--t-base);
}
.lang__link:hover {
  opacity: 1;
  color: var(--color-gold);
}
.lang__link.is-active {
  color: var(--nav-text);
  opacity: 1;
}

.nav.is-scrolled .lang {
  color: var(--nav-text-dark-muted);
}
.nav.is-scrolled .lang__link {
  text-shadow: none;
  font-weight: 500;
}
.nav.is-scrolled .lang__link.is-active {
  color: var(--nav-text-dark);
}

.nav__icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--nav-text);
  border: 1px solid rgba(245, 242, 238, 0.25);
  background: rgba(245, 242, 238, 0.06);
  transition:
    transform var(--t-base),
    background-color var(--t-base),
    border-color var(--t-base),
    color var(--t-base);
}

.nav__icon:hover {
  transform: translateY(-1px);
  background: rgba(245, 242, 238, 0.12);
  border-color: rgba(245, 242, 238, 0.35);
}

.nav.is-scrolled .nav__icon {
  color: var(--nav-text-dark);
  border-color: rgba(27, 27, 27, 0.14);
  background: rgba(27, 27, 27, 0.02);
}
.nav.is-scrolled .nav__icon:hover {
  background: rgba(27, 27, 27, 0.05);
  border-color: rgba(27, 27, 27, 0.18);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition:
    transform 520ms var(--ease-luxe),
    background-color var(--t-base),
    color var(--t-base),
    border-color var(--t-base),
    box-shadow 520ms var(--ease-luxe);
  will-change: transform;
}

.btn--reserve {
  color: var(--color-black);
  background: rgba(245, 242, 238, 0.92);
  border: 1px solid rgba(245, 242, 238, 0.32);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.14);
}

.btn--reserve:hover {
  transform: translateY(-2px);
  background: var(--color-white);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.nav.is-scrolled .btn--reserve {
  background: var(--color-gold);
  color: var(--color-white);
  box-shadow: 0 14px 40px rgba(27, 27, 27, 0.12);
}
.nav.is-scrolled .btn--reserve:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(27, 27, 27, 0.16);
}

/* Burger, hidden desktop */
.nav__burger {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 242, 238, 0.25);
  background: rgba(245, 242, 238, 0.06);
  color: var(--nav-text);
  transition:
    background-color var(--t-base),
    border-color var(--t-base),
    transform var(--t-base),
    color var(--t-base);
}
.nav.is-scrolled .nav__burger {
  border-color: rgba(27, 27, 27, 0.14);
  background: rgba(27, 27, 27, 0.02);
  color: var(--nav-text-dark);
}
.nav__burger:hover {
  transform: translateY(-1px);
}

.burger {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  position: relative;
}
.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition:
    transform 520ms var(--ease-luxe),
    top 520ms var(--ease-luxe),
    opacity 520ms var(--ease-luxe);
}
.burger::before {
  top: -6px;
}
.burger::after {
  top: 6px;
}

/* =========================
   REVEAL, LUXE, STAGGER PAR LIGNE
   ========================= */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  filter: blur(4px);
  transition:
    opacity 700ms var(--ease-luxe),
    transform 900ms var(--ease-luxe),
    filter 900ms var(--ease-luxe);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none !important;
  }
}

/* =========================
   MOBILE OVERLAY MENU
   ========================= */

.mobile {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
}

.mobile.is-open {
  pointer-events: auto;
}

.mobile__backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 520ms var(--ease-luxe);
}

.mobile__panel {
  position: absolute;
  inset: 0;
  background: var(--color-white);
  transform: translateY(-10px);
  opacity: 0;
  transition:
    transform 520ms var(--ease-luxe),
    opacity 520ms var(--ease-luxe);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile.is-open .mobile__backdrop {
  opacity: 1;
}

.mobile.is-open .mobile__panel {
  transform: translateY(0);
  opacity: 1;
}

.mobile__top {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.2rem;
  background: rgba(245, 242, 238, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(27, 27, 27, 0.08);
}

.mobile__close {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(27, 27, 27, 0.14);
  background: rgba(27, 27, 27, 0.02);
  transition:
    transform var(--t-base),
    background-color var(--t-base),
    border-color var(--t-base);
  color: var(--color-black);
  -webkit-appearance: none;
}
.mobile__close:hover {
  transform: translateY(-1px);
  background: rgba(27, 27, 27, 0.05);
  border-color: rgba(27, 27, 27, 0.18);
}

.mobile__content {
  padding: 1.6rem 1.2rem 2.2rem;
}

.mobile__links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.8rem;
}

.mobile__link {
  font-family: var(--font-title);
  font-size: 2rem;
  line-height: 1.1;
  padding: 0.8rem 0.2rem;
  color: var(--color-black);
  transition:
    transform 520ms var(--ease-luxe),
    color var(--t-base);
}

.mobile__link:hover {
  color: var(--color-gold);
  transform: translateX(6px);
}

.mobile__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lang--mobile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(27, 27, 27, 0.78);
  text-transform: none;
  letter-spacing: 0.02em;
}

.lang--mobile .lang__link {
  font-family: var(--font-text);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.btn--full {
  width: 100%;
}

/* Actions, base commune dans le menu mobile */
.mobile__actions .btn--mobile-reserve,
.mobile__actions .mobile__call {
  width: 100%;
  min-height: 3.5rem;
  padding: 0 1.1rem;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;

  font-family: var(--font-text);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;

  box-shadow: 0 18px 50px rgba(27, 27, 27, 0.12);
  transition:
    transform 520ms var(--ease-luxe),
    box-shadow 520ms var(--ease-luxe),
    background-color var(--t-base),
    border-color var(--t-base),
    color var(--t-base);
}

/* Réserver, blanc */
.mobile__actions .btn--mobile-reserve {
  background: var(--color-white);
  color: var(--color-black);
  border: 1px solid rgba(27, 27, 27, 0.14);
}

/* Appeler, gold */
.mobile__actions .mobile__call {
  background: var(--color-gold);
  color: var(--color-white);
  border: 1px solid rgba(170, 132, 84, 0.45);
}

.mobile__actions .btn--mobile-reserve:hover,
.mobile__actions .mobile__call:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(27, 27, 27, 0.16);
}

.mobile__call:hover {
  transform: translateY(-2px);
  background: rgba(27, 27, 27, 0.05);
  border-color: rgba(27, 27, 27, 0.18);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#mobileMenu .lang--mobile {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
  letter-spacing: 0;
}

#mobileMenu .lang--mobile .lang__flag {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  border: 1px solid rgba(27, 27, 27, 0.14);
  background: rgba(27, 27, 27, 0.02);
  transition:
    transform var(--t-base),
    background-color var(--t-base),
    border-color var(--t-base);
}

#mobileMenu .lang--mobile .lang__flag:hover {
  transform: translateY(-1px);
  border-color: rgba(170, 132, 84, 0.55);
}

#mobileMenu .lang--mobile .lang__flag.is-active {
  border-color: rgba(170, 132, 84, 0.85);
  background: rgba(170, 132, 84, 0.14);
}
#mobileMenu {
  position: fixed;
  inset: 0;
}

#mobileMenu .mobile__backdrop {
  z-index: 0;
}

#mobileMenu .mobile__panel {
  z-index: 1;
}
#mobileMenu .mobile__backdrop {
  background: rgba(27, 27, 27, 0.55);
}
#mobileMenu {
  position: fixed;
  inset: 0;
  isolation: isolate;
}

#mobileMenu .mobile__backdrop {
  background: rgba(27, 27, 27, 0.55);
  z-index: 0;
}

#mobileMenu .mobile__panel {
  z-index: 1;
}

.footer {
  height: 100vh;
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 100px 15%;
  text-align: center;
}

/* =========================
   RESPONSIVE, DESKTOP FIRST
   ========================= */

@media (max-width: 1600px) {
  .nav__logo {
    height: 50px;
  }
  .nav__brand {
    transform: translateY(0px);
  }
}

@media (max-width: 1450px) {
  .nav__left {
    display: none;
  }

  .lang,
  .btn--reserve,
  .nav__icon {
    display: none;
  }

  .nav__burger {
    display: inline-flex;
  }

  .nav__inner {
    gap: 0.75rem;
  }

  .nav__brand {
    flex: 1;
    justify-content: flex-start;
  }

  .nav__right {
    flex: 0 0 auto;
  }
  #mobileMenu .lang,
  #mobileMenu .btn--reserve {
    display: flex;
  }

  #mobileMenu .btn--reserve {
    display: inline-flex;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .nav,
  .nav__logo,
  .nav__link,
  .btn,
  .mobile__backdrop,
  .mobile__panel,
  .mobile__link {
    transition: none !important;
  }
}

@media (max-width: 420px) {
  .btn--reserve {
    padding: 0.65rem 0.75rem;
    font-size: 0.78rem;
  }
  .lang {
    font-size: 0.8rem;
  }

  .nav {
    padding: 20px;
  }
}

.btn-gold {
  background-color: var(--color-gold);
  width: fit-content;
  font-weight: 600;
}
.btn-gold:hover {
  transform: translateY(-2px);
  background-color: #9c794e;
}
/* =========================
   FOOTER (main.css)
   ========================= */

.site-footer {
  background-color: var(--color-black);
  color: var(--color-light-gray);
  padding: 100px 15% 40px; /* Aligné sur vos autres sections */
  font-family: var(--font-text);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Colonnes & Typographie */
.footer__col {
  display: flex;
  flex-direction: column;
}

.footer__brand {
  padding-right: 40px;
}

.footer__logo {
  max-width: 220px;
  margin-bottom: 24px;
}

.footer__desc {
  margin-bottom: 30px;
  line-height: 1.8;
  color: rgba(245, 242, 238, 0.8);
}

.footer__title {
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: 1.5rem;
  margin-bottom: 24px;
  position: relative;
}

.footer__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background-color: var(--color-gold);
}

/* Liens rapides */
.footer__links,
.footer__contact {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__links a {
  color: var(--color-light-gray);
  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
}

.footer__links a:hover {
  color: var(--color-white);
  padding-left: 8px; /* Petit effet interactif luxe */
}

.footer__links a.gold-link {
  color: var(--color-gold);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

.footer__links a.gold-link:hover {
  color: #fff;
}

/* Infos de contact */
.footer__contact li {
  line-height: 1.6;
}

.footer__contact strong {
  color: var(--color-white);
  font-weight: 500;
}

.hover-gold {
  transition: color 0.3s ease;
}
.hover-gold:hover {
  color: var(--color-gold);
}

/* Réseaux sociaux */
.footer__socials {
  display: flex;
  gap: 16px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

.label-certif {
  display: flex;
  margin-top: 24px;
  gap: 8px;
  flex-wrap: wrap;
}
.label-certif img {
  height: 70px;
  transition: 0.3s;
}

.label-certif img:hover {
  transform: translateY(-2px);
}
/* Footer Bottom (Copyright) */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-size: 0.9rem;
  color: rgba(245, 242, 238, 0.6);
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__legal a {
  transition: color 0.3s ease;
}

.footer__legal a:hover {
  color: var(--color-white);
}

.sep {
  color: rgba(255, 255, 255, 0.2);
}

/* =========================
   MEDIA QUERIES FOOTER
   ========================= */

/* Desktop / Tablettes (largeur dynamique alignée avec vos autres sections) */
@media (max-width: 1600px) {
  .site-footer {
    padding-left: 10%;
    padding-right: 10%;
  }
}

@media (max-width: 1200px) {
  .site-footer {
    padding-left: 5%;
    padding-right: 5%;
  }
  .footer__brand {
    padding-right: 20px;
  }
}

/* Tablettes portrait (Passage sur 2 colonnes ou empilement) */
@media (max-width: 992px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer__brand {
    padding-right: 0;
  }
  .footer__logo {
    max-width: 180px;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .site-footer {
    padding-top: 60px;
    padding-bottom: 30px;
  }
  .footer__legal {
    flex-direction: column;
    gap: 8px;
  }
  .footer__legal .sep {
    display: none;
  }
}
.info {
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: bold;
}

h2 {
  letter-spacing: -1px;
}
