/* ============================================================
   ROYAL HÔTEL RESTAURANT BONHOMME — Luxury Design System
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --noir: #0a0a0a;
  --noir-light: #1a1a1a;
  --noir-card: #111111;
  --or: #c9a84c;
  --or-light: #d4ba6a;
  --or-dark: #a8893d;
  --creme: #f5f0e8;
  --creme-dark: #e8e0d0;
  --vert: #2d4a2d;
  --vert-light: #3d6a3d;
  --blanc: #ffffff;
  --gris: #888888;
  --gris-light: #cccccc;

  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Montserrat', 'Helvetica Neue', sans-serif;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.25);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.35);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.3);

  --container: 1200px;
  --container-narrow: 900px;
  --nav-height: 80px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--creme);
  background-color: var(--noir);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
}

.text-gold { color: var(--or); }
.text-creme { color: var(--creme); }
.text-center { text-align: center; }

/* --- Section subtitle ornament --- */
.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--or);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-subtitle::before,
.section-subtitle::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--or);
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--creme);
}

.section-description {
  max-width: 650px;
  margin: 0 auto 3rem;
  color: var(--gris-light);
  font-size: 1.05rem;
  line-height: 1.9;
}

/* --- Gold divider --- */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
  margin: 1.5rem auto;
}

/* --- Container --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* --- Sections --- */
section {
  padding: 6rem 0;
  position: relative;
}

section.section--creme {
  background-color: var(--creme);
  color: var(--noir);
}

section.section--creme .section-title { color: var(--noir); }
section.section--creme .section-description { color: #555; }
section.section--creme .section-subtitle { color: var(--or-dark); }
section.section--creme .section-subtitle::before,
section.section--creme .section-subtitle::after { background: var(--or-dark); }

section.section--vert {
  background-color: var(--vert);
  color: var(--creme);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 0;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn--gold {
  background: linear-gradient(135deg, var(--or), var(--or-light));
  color: var(--noir);
}

.btn--gold:hover {
  background: linear-gradient(135deg, var(--or-light), var(--or));
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn--outline {
  border: 1px solid var(--or);
  color: var(--or);
  background: transparent;
}

.btn--outline:hover {
  background: var(--or);
  color: var(--noir);
}

.btn--white {
  border: 1px solid var(--creme);
  color: var(--creme);
  background: transparent;
}

.btn--white:hover {
  background: var(--creme);
  color: var(--noir);
}

.btn--dark {
  background: var(--noir);
  color: var(--or);
}

.btn--dark:hover {
  background: var(--noir-light);
  box-shadow: var(--shadow-md);
}

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition);
  padding: 1.2rem 0;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.6rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img {
  height: auto;
  max-height: 55px;
  width: auto;
  object-fit: contain;
  transition: max-height var(--transition);
}

.nav.scrolled .nav__logo img {
  max-height: 40px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--creme);
  position: relative;
  padding: 0.5rem 0;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--or);
  transition: width var(--transition);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__links a:hover {
  color: var(--or);
}

.nav__cta {
  font-size: 0.7rem !important;
  letter-spacing: 0.15em !important;
  padding: 0.7rem 1.5rem;
  background: linear-gradient(135deg, var(--or), var(--or-light));
  color: var(--noir) !important;
  font-weight: 600 !important;
}

.nav__cta::after { display: none !important; }

.nav__cta:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
  color: var(--noir) !important;
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.nav__toggle span {
  width: 25px;
  height: 2px;
  background: var(--creme);
  transition: all var(--transition);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  height: 90vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.3) 0%,
    rgba(10, 10, 10, 0.5) 50%,
    rgba(10, 10, 10, 0.8) 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 2rem;
  max-width: 900px;
}

.hero__badge {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero__badge::before,
.hero__badge::after {
  content: '';
  width: 50px;
  height: 1px;
  background: var(--or);
}

.hero__title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--blanc);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero__title span {
  display: block;
  font-style: italic;
  font-size: 0.65em;
  color: var(--or);
  margin-top: 0.3em;
}

.hero__description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.9;
  font-weight: 300;
}

.hero__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--or);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--or), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

@keyframes scrollLine {
  0% { opacity: 1; height: 40px; }
  50% { opacity: 0.3; height: 25px; }
  100% { opacity: 1; height: 40px; }
}

/* --- PAGE HERO (sous-pages) --- */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero .hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.page-hero .hero__overlay {
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.7) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 2rem;
}

.page-hero__content .hero__badge {
  margin-bottom: 1rem;
}

.page-hero__content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--blanc);
  margin-bottom: 1rem;
}

.page-hero__content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 550px;
  margin: 0 auto;
}

/* --- ROOM CARDS --- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.room-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  group: true;
  min-height: 450px;
}

.room-card__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.room-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.room-card:hover .room-card__image img {
  transform: scale(1.08);
}

.room-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(10, 10, 10, 0.85) 0%,
    rgba(10, 10, 10, 0.2) 50%,
    rgba(10, 10, 10, 0.1) 100%
  );
  transition: background var(--transition);
}

.room-card:hover .room-card__overlay {
  background: linear-gradient(
    0deg,
    rgba(10, 10, 10, 0.9) 0%,
    rgba(10, 10, 10, 0.4) 60%,
    rgba(10, 10, 10, 0.2) 100%
  );
}

.room-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  transform: translateY(20px);
  transition: transform var(--transition);
}

.room-card:hover .room-card__content {
  transform: translateY(0);
}

.room-card__category {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 0.5rem;
}

.room-card__name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--blanc);
  margin-bottom: 0.5rem;
}

.room-card__price {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--or);
  margin-bottom: 1rem;
}

.room-card__price small {
  font-size: 0.7rem;
  color: var(--gris);
}

.room-card__features {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition) 0.1s;
}

.room-card:hover .room-card__features {
  opacity: 1;
  transform: translateY(0);
}

.room-card__features span {
  font-size: 0.7rem;
  color: var(--gris-light);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.room-card__btn {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--or);
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition) 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.room-card:hover .room-card__btn {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESTAURANT SECTION --- */
.restaurant-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin: 4rem 0;
}

.restaurant-feature.reversed {
  direction: rtl;
}

.restaurant-feature.reversed > * {
  direction: ltr;
}

.restaurant-feature__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.restaurant-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}

.restaurant-feature__image:hover img {
  transform: scale(1.05);
}

.restaurant-feature__image::after {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  bottom: -10px;
  left: -10px;
  border: 1px solid var(--or);
  opacity: 0.3;
  pointer-events: none;
}

.restaurant-feature__content {
  padding: 2rem 0;
}

.restaurant-feature__content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--creme);
}

.restaurant-feature__content p {
  color: var(--gris-light);
  margin-bottom: 1.5rem;
}

/* --- EXPERIENCES / FEATURES GRID --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.feature-card {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid rgba(201,168,76,0.15);
  transition: all var(--transition);
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.03);
  transform: translateY(-5px);
}

.feature-card__icon {
  font-size: 2.5rem;
  color: var(--or);
  margin-bottom: 1.5rem;
}

.feature-card h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--creme);
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gris);
  line-height: 1.7;
}

/* --- TESTIMONIALS --- */
.testimonials-section {
  background: linear-gradient(135deg, var(--noir) 0%, var(--noir-light) 100%);
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial {
  text-align: center;
  padding: 2rem;
}

.testimonial__stars {
  color: var(--or);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.3em;
}

.testimonial__text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--creme);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.testimonial__author {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--or);
}

.testimonial__source {
  font-size: 0.75rem;
  color: var(--gris);
  margin-top: 0.3rem;
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.testimonials-nav button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--or);
  background: transparent;
  transition: all var(--transition);
  cursor: pointer;
}

.testimonials-nav button.active {
  background: var(--or);
  transform: scale(1.2);
}

/* --- OFFERS / PACKAGES --- */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.offer-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
}

.offer-card__image {
  width: 100%;
  height: 100%;
}

.offer-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}

.offer-card:hover .offer-card__image img {
  transform: scale(1.06);
}

.offer-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.3) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}

.offer-card__tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--or);
  color: var(--noir);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
}

.offer-card h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--blanc);
  margin-bottom: 0.5rem;
}

.offer-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}

.offer-card__price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--or);
  margin-bottom: 1rem;
}

.offer-card__price small {
  font-size: 0.8rem;
  color: var(--gris);
}

/* --- AVAILABILITY COUNTER --- */
.availability-banner {
  background: linear-gradient(90deg, var(--or-dark), var(--or), var(--or-dark));
  color: var(--noir);
  text-align: center;
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.availability-banner strong {
  font-weight: 700;
}

/* --- INSTAGRAM FEED --- */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

.instagram-grid__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.instagram-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition);
}

.instagram-grid__item:hover img {
  transform: scale(1.1);
}

.instagram-grid__item::after {
  content: '\f16d';
  font-family: 'Font Awesome 6 Brands';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,10,0.6);
  color: var(--blanc);
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.instagram-grid__item:hover::after {
  opacity: 1;
}

/* --- NEWSLETTER --- */
.newsletter {
  background: var(--noir-light);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 4rem;
  text-align: center;
  max-width: 700px;
  margin: 3rem auto 0;
}

.newsletter h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.newsletter p {
  font-size: 0.9rem;
  color: var(--gris);
  margin-bottom: 2rem;
}

.newsletter__form {
  display: flex;
  gap: 0;
  max-width: 450px;
  margin: 0 auto;
}

.newsletter__form input {
  flex: 1;
  padding: 1rem 1.5rem;
  background: var(--noir);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--creme);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter__form input::placeholder {
  color: var(--gris);
}

.newsletter__form input:focus {
  border-color: var(--or);
}

.newsletter__form button {
  padding: 1rem 2rem;
  background: var(--or);
  color: var(--noir);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.newsletter__form button:hover {
  background: var(--or-light);
}

/* --- CONTACT FORM --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--noir-light);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--creme);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--or);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-info {
  padding: 2rem 0;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-info__icon {
  width: 50px;
  height: 50px;
  border: 1px solid var(--or);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--or);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info__text h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 0.3rem;
}

.contact-info__text p {
  font-size: 0.95rem;
  color: var(--gris-light);
}

.contact-info__text a:hover {
  color: var(--or);
}

/* --- MAP --- */
.map-container {
  width: 100%;
  height: 400px;
  margin-top: 3rem;
  filter: grayscale(80%) contrast(1.1);
  transition: filter var(--transition);
}

.map-container:hover {
  filter: grayscale(30%) contrast(1.05);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- FOOTER --- */
.footer {
  background: var(--noir);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 5rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand img {
  height: auto;
  max-height: 50px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.footer__brand p {
  font-size: 0.85rem;
  color: var(--gris);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--or);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer__social a:hover {
  background: var(--or);
  color: var(--noir);
}

.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1.5rem;
}

.footer__col ul li {
  margin-bottom: 0.8rem;
}

.footer__col ul li a {
  font-size: 0.85rem;
  color: var(--gris);
  transition: color var(--transition);
}

.footer__col ul li a:hover {
  color: var(--or);
}

.footer__bottom {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom p {
  font-size: 0.75rem;
  color: var(--gris);
}

.footer__bottom-links {
  display: flex;
  gap: 2rem;
}

.footer__bottom-links a {
  font-size: 0.75rem;
  color: var(--gris);
}

.footer__bottom-links a:hover {
  color: var(--or);
}

/* --- STICKY BOOKING BUTTON --- */
.sticky-booking {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8rem;
}

.sticky-booking__btn {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--or), var(--or-light));
  color: var(--noir);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  box-shadow: var(--shadow-gold), 0 4px 15px rgba(0,0,0,0.3);
  transition: all var(--transition);
  animation: pulse-glow 3s ease-in-out infinite;
}

.sticky-booking__btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 30px rgba(201,168,76,0.5);
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: var(--shadow-gold), 0 4px 15px rgba(0,0,0,0.3); }
  50% { box-shadow: 0 4px 25px rgba(201,168,76,0.5), 0 4px 15px rgba(0,0,0,0.3); }
}

/* --- CHAT WIDGET --- */
.chat-widget {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 998;
}

.chat-widget__btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--vert);
  color: var(--blanc);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  cursor: pointer;
}

.chat-widget__btn:hover {
  background: var(--vert-light);
  transform: scale(1.1);
}

.chat-widget__popup {
  position: absolute;
  bottom: 70px;
  left: 0;
  width: 340px;
  background: var(--noir-light);
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: var(--shadow-lg);
  display: none;
}

.chat-widget__popup.active {
  display: block;
  animation: slideUp 0.3s ease;
}

.chat-widget__header {
  background: var(--vert);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-widget__header h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blanc);
}

.chat-widget__header button {
  color: var(--blanc);
  font-size: 1.2rem;
  cursor: pointer;
}

.chat-widget__body {
  padding: 1.5rem;
  min-height: 200px;
}

.chat-widget__body p {
  font-size: 0.85rem;
  color: var(--gris-light);
  margin-bottom: 1rem;
}

.chat-widget__body input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--noir);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--creme);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  outline: none;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- SPECIAL OFFER BANNER --- */
.special-offer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: linear-gradient(90deg, var(--vert), var(--vert-light), var(--vert));
  color: var(--blanc);
  text-align: center;
  padding: 0.7rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transform: translateY(-100%);
  transition: transform var(--transition);
}

.special-offer.visible {
  transform: translateY(0);
}

.special-offer a {
  color: var(--or);
  font-weight: 700;
  text-decoration: underline;
}

.special-offer__close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blanc);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0.7;
}

.special-offer__close:hover {
  opacity: 1;
}

body.offer-visible .nav {
  top: 36px;
}

/* --- TIMELINE (histoire) --- */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 3rem auto 0;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--or), rgba(201,168,76,0.2));
}

.timeline__item {
  position: relative;
  padding-bottom: 3rem;
  padding-left: 2rem;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -3.35rem;
  top: 0.3rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--or);
  border: 2px solid var(--noir);
}

.timeline__year {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--or);
  margin-bottom: 0.5rem;
}

.timeline__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--creme);
  margin-bottom: 0.5rem;
}

.timeline__text {
  font-size: 0.9rem;
  color: var(--gris-light);
  line-height: 1.8;
}

/* --- GIFT CARDS SECTION --- */
.gift-section {
  background: linear-gradient(135deg, var(--noir) 0%, rgba(45,74,45,0.3) 100%);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 4rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-top: 3rem;
}

.gift-section__image {
  flex: 1;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gift-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gift-section__content {
  flex: 1;
}

.gift-section__content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.gift-section__content p {
  color: var(--gris-light);
  margin-bottom: 2rem;
}

/* --- SCROLL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for grid children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }
.stagger > *:nth-child(5) { transition-delay: 0.4s; }
.stagger > *:nth-child(6) { transition-delay: 0.5s; }

/* --- PARALLAX --- */
.parallax-bg {
  position: absolute;
  inset: -20%;
  z-index: 0;
  will-change: transform;
}

.parallax-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- MENU TABLE --- */
.menu-section {
  max-width: 700px;
  margin: 0 auto;
}

.menu-category {
  margin-bottom: 3rem;
}

.menu-category h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--or);
  margin-bottom: 1.5rem;
  text-align: center;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.menu-item__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: #0a0a0a !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.menu-item__desc {
  font-size: 0.8rem;
  color: var(--gris);
  margin-top: 0.2rem;
}

.menu-item__price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--or);
  white-space: nowrap;
  margin-left: 2rem;
}

/* --- GALLERY LIGHTBOX --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.gallery-grid__item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1;
  transition: transform var(--transition);
}

.gallery-grid__item:hover img {
  transform: scale(1.08);
}

.gallery-grid__item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid__item:nth-child(1) img {
  aspect-ratio: auto;
}

/* --- LOGIS BADGE --- */
.logis-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.5rem;
  border: 1px solid rgba(201,168,76,0.3);
  margin-top: 1.5rem;
}

.logis-badge img {
  height: 30px;
}

.logis-badge span {
  font-size: 0.75rem;
  color: var(--gris-light);
  letter-spacing: 0.05em;
}

/* Small image scale — prevents blur by using CSS transform instead of stretching */
.img-scale-container {
  overflow: hidden;
  position: relative;
}

.img-scale-container img {
  transform: scale(1.05);
  transform-origin: center center;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

@media (max-width: 1024px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .restaurant-feature {
    gap: 2rem;
  }

  .gift-section {
    flex-direction: column;
    padding: 3rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    transition: right var(--transition);
    padding: 2rem;
  }

  .nav__links.active {
    right: 0;
  }

  .nav__toggle {
    display: flex;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .room-card {
    min-height: 380px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .restaurant-feature {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .restaurant-feature.reversed {
    direction: ltr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .newsletter {
    padding: 2.5rem 1.5rem;
  }

  .newsletter__form {
    flex-direction: column;
    gap: 0.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gift-section {
    padding: 2rem;
  }

  .sticky-booking {
    display: none;
  }

  .chat-widget {
    bottom: 1rem;
    left: 1rem;
  }

  .chat-widget__popup {
    width: calc(100vw - 4rem);
    left: 0;
  }

  .hero__buttons {
    flex-direction: column;
  }

  .special-offer {
    font-size: 0.7rem;
    padding: 0.6rem 3rem 0.6rem 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .page-hero {
    height: 50vh;
    min-height: 350px;
  }

  .room-card {
    min-height: 350px;
  }

  .offers-grid {
    gap: 1.5rem;
  }

  .offer-card {
    aspect-ratio: 4/3;
  }

  .timeline {
    padding-left: 2rem;
  }

  .timeline__item {
    padding-left: 1.5rem;
  }
}

/* --- FAQ Accordion --- */
.faq-section {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.faq-item:first-child {
  border-top: 1px solid rgba(201,168,76,0.2);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--noir);
  font-weight: 600;
  line-height: 1.4;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--or);
}

.faq-question::after {
  content: '+';
  flex-shrink: 0;
  margin-left: 1rem;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--or);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 600px;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  color: var(--gris);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* --- About page --- */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.9;
}

.about-content h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--noir);
  margin: 3rem 0 1rem;
}

.about-content h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--or-dark);
  margin: 2rem 0 0.8rem;
}

.about-content p {
  color: var(--gris);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.about-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--gris);
}

.about-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.about-content blockquote {
  border-left: 3px solid var(--or);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--creme);
  font-style: italic;
  color: var(--gris);
}

.about-content .fact-box {
  background: var(--noir);
  color: var(--blanc);
  padding: 2rem;
  border-radius: 4px;
  margin: 2rem 0;
}

.about-content .fact-box h4 {
  color: var(--or);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.about-content .fact-box ul {
  color: rgba(255,255,255,0.8);
  margin-left: 1rem;
}

/* --- ABOUT PAGE REDESIGN --- */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 0;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: none;
}

.about-stats:last-of-type {
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  margin-bottom: 0;
}

.about-stat {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-right: 1px solid rgba(201, 168, 76, 0.1);
  transition: background var(--transition);
}

.about-stat:last-child { border-right: none; }

.about-stat:hover {
  background: rgba(201, 168, 76, 0.05);
}

.about-stat__icon {
  font-size: 1.8rem;
  color: var(--or);
  margin-bottom: 1rem;
}

.about-stat__value {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--or);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.about-stat__label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gris);
}

.about-block {
  margin-bottom: 5rem;
}

.about-block__header {
  text-align: center;
  margin-bottom: 3rem;
}

.about-block__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--creme);
  margin-bottom: 0.5rem;
}

.about-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
}

.about-feature.reversed {
  direction: rtl;
}

.about-feature.reversed > * {
  direction: ltr;
}

.about-feature__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-feature__image:hover img {
  transform: scale(1.05);
}

.about-feature__image::after {
  content: '';
  position: absolute;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  pointer-events: none;
}

.about-feature__text h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--or);
  margin-bottom: 1rem;
}

.about-feature__text p {
  color: var(--gris-light);
  margin-bottom: 1rem;
  line-height: 1.9;
}

.about-celebrity-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-celebrity {
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(201, 168, 76, 0.15);
  transition: all var(--transition);
  position: relative;
}

.about-celebrity::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.about-celebrity:hover::before { transform: scaleX(1); }
.about-celebrity:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.03);
  transform: translateY(-5px);
}

.about-celebrity__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid var(--or);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.5rem;
  color: var(--or);
}

.about-celebrity__name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--creme);
  margin-bottom: 0.3rem;
}

.about-celebrity__title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1rem;
}

.about-celebrity__text {
  font-size: 0.9rem;
  color: var(--gris);
  line-height: 1.7;
}

.about-dish-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-dish {
  padding: 2rem;
  border: 1px solid rgba(201, 168, 76, 0.15);
  transition: all var(--transition);
}

.about-dish:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.03);
}

.about-dish__icon {
  font-size: 1.5rem;
  color: var(--or);
  margin-bottom: 1rem;
}

.about-dish__name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--creme);
  margin-bottom: 0.5rem;
}

.about-dish__desc {
  font-size: 0.85rem;
  color: var(--gris);
  line-height: 1.7;
}

.about-rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-room-type {
  display: block;
  padding: 1.5rem;
  border-left: 2px solid var(--or);
  transition: all var(--transition);
  text-decoration: none;
  cursor: pointer;
}

.about-room-type:hover {
  background: rgba(201, 168, 76, 0.08);
  border-left-width: 4px;
  transform: translateX(4px);
}

.about-room-type h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--noir);
  margin-bottom: 0.3rem;
  transition: color var(--transition);
}

.about-room-type:hover h4 {
  color: var(--or-dark);
}

.about-room-type p {
  font-size: 0.85rem;
  color: var(--gris);
}

.about-room-type .about-room-type__arrow {
  display: inline-block;
  font-size: 0.7rem;
  color: var(--or);
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateX(-5px);
  transition: all var(--transition);
}

.about-room-type:hover .about-room-type__arrow {
  opacity: 1;
  transform: translateX(0);
}

.about-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.about-info-card {
  padding: 2rem;
  border: 1px solid rgba(201, 168, 76, 0.15);
  text-align: center;
}

.about-info-card__icon {
  font-size: 1.5rem;
  color: var(--or);
  margin-bottom: 1rem;
}

.about-info-card h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 0.8rem;
}

.about-info-card p,
.about-info-card a {
  font-size: 0.9rem;
  color: var(--gris-light);
  line-height: 1.8;
}

.about-info-card a:hover { color: var(--or); }

section.section--creme .about-block__header h2 { color: var(--noir); }
section.section--creme .about-feature__text h3 { color: var(--or-dark); }
section.section--creme .about-feature__text p { color: #555; }
section.section--creme .about-celebrity__name { color: var(--noir); }
section.section--creme .about-celebrity__text { color: #666; }
section.section--creme .about-dish__name { color: var(--noir); }
section.section--creme .about-dish__desc { color: #666; }

@media (max-width: 1024px) {
  .about-stats { grid-template-columns: repeat(4, 1fr); }
  .about-celebrity-grid { grid-template-columns: repeat(3, 1fr); }
  .about-dish-grid { grid-template-columns: repeat(3, 1fr); }
  .about-rooms-grid { grid-template-columns: repeat(3, 1fr); }
  .about-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-stats .about-stat:nth-child(2n) { border-right: none; }
  .about-feature { grid-template-columns: 1fr; gap: 2rem; }
  .about-feature.reversed { direction: ltr; }
  .about-celebrity-grid { grid-template-columns: repeat(2, 1fr); }
  .about-dish-grid { grid-template-columns: repeat(2, 1fr); }
  .about-rooms-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .about-celebrity-grid { grid-template-columns: 1fr; }
  .about-dish-grid { grid-template-columns: 1fr; }
  .about-rooms-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- CUSTOM CURSOR --- */
.custom-cursor {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 2px solid var(--or);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
  mix-blend-mode: difference;
}

.custom-cursor.hovering {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.15);
}

body.custom-cursor-active,
body.custom-cursor-active a,
body.custom-cursor-active button,
body.custom-cursor-active .btn,
body.custom-cursor-active input,
body.custom-cursor-active select,
body.custom-cursor-active textarea {
  cursor: none;
}

/* --- RIPPLE EFFECT --- */
.btn {
  overflow: hidden;
}

.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.35);
  transform: scale(0);
  animation: ripple-animation 0.6s ease-out forwards;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* --- PAGE TRANSITION OVERLAY --- */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: var(--noir);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-transition.active {
  opacity: 1;
  pointer-events: all;
}

.page-transition__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 50px;
  width: auto;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.3s ease 0.15s;
}

.page-transition.active .page-transition__logo {
  opacity: 1;
}

/* --- HERITAGE BANNER --- */
.heritage-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1002;
  background: var(--noir);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 0.45rem 2rem;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gris);
}

.heritage-banner span {
  color: var(--or);
}

.heritage-banner .separator {
  display: inline-block;
  margin: 0 1rem;
  color: rgba(201, 168, 76, 0.4);
}

.nav {
  top: 26px;
}

.special-offer {
  top: 26px;
}

@media (max-width: 768px) {
  .heritage-banner {
    font-size: 0.5rem;
    letter-spacing: 0.12em;
    padding: 0.35rem 0.8rem;
  }
  .heritage-banner .separator {
    margin: 0 0.4rem;
  }
  .nav {
    top: 22px;
  }
  .special-offer {
    top: 22px;
  }
}

/* --- GALLERY PAGE --- */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.gallery-filters button {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.7rem 1.8rem;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gris);
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-filters button:hover,
.gallery-filters button.active {
  background: var(--or);
  color: var(--noir);
  border-color: var(--or);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.gallery-masonry__item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border-radius: 4px;
  height: 250px;
}

.gallery-masonry__item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}

.gallery-masonry__item:hover img {
  transform: scale(1.05);
}

.gallery-masonry__item.hidden {
  display: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(10, 10, 10, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2.5rem;
  color: var(--creme);
  cursor: pointer;
  background: none;
  border: none;
  z-index: 2;
  transition: color var(--transition);
}

.lightbox__close:hover { color: var(--or); }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: var(--creme);
  cursor: pointer;
  background: none;
  border: none;
  padding: 1rem;
  transition: color var(--transition);
  z-index: 2;
}

.lightbox__nav:hover { color: var(--or); }
.lightbox__nav--prev { left: 1rem; }
.lightbox__nav--next { right: 1rem; }

.lightbox__counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--gris);
  letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
  .gallery-masonry { grid-template-columns: repeat(3, 1fr); }
  .gallery-masonry__item { height: 220px; }
}

@media (max-width: 768px) {
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry__item { height: 200px; }
  .gallery-filters { gap: 0.5rem; }
  .gallery-filters button { padding: 0.5rem 1.2rem; font-size: 0.6rem; }
  .lightbox__nav { font-size: 2rem; }
}

@media (max-width: 480px) {
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .gallery-masonry__item { height: 150px; }
}

/* --- MOBILE CALL BUTTON --- */
.mobile-call {
  display: none;
}

@media (max-width: 768px) {
  .mobile-call {
    display: flex;
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 998;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--vert), var(--vert-light));
    color: var(--blanc);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    white-space: nowrap;
  }
  .mobile-call i { font-size: 1rem; }
}

/* --- 44px TOUCH TARGETS --- */
@media (max-width: 768px) {
  .btn,
  .faq-question,
  .gallery-filters button,
  .testimonials-nav button {
    min-height: 44px;
  }
  .footer__social a {
    width: 44px;
    height: 44px;
  }
}

/* --- 404 PAGE --- */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--noir);
  text-align: center;
  padding: 2rem;
}

.error-page__content { max-width: 600px; }

.error-page__code {
  font-family: var(--font-serif);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 300;
  color: rgba(201, 168, 76, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
}

.error-page__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--creme);
  margin-bottom: 1rem;
}

.error-page__text {
  color: var(--gris);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* --- FOOTER ENRICHED --- */
.footer__hours {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer__hours h5 {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 0.8rem;
}

.footer__hours p {
  font-size: 0.8rem;
  color: var(--gris);
  line-height: 1.8;
}

.footer__michelin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--or);
  font-weight: 500;
}

/* --- PREMIUM HERO ENTRANCE --- */
.hero__content .hero__badge {
  opacity: 0;
  transform: translateY(20px);
  animation: heroEntrance 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.hero__content .hero__title {
  opacity: 0;
  transform: translateY(30px);
  animation: heroEntrance 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}

.hero__content .hero__description {
  opacity: 0;
  transform: translateY(20px);
  animation: heroEntrance 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards;
}

.hero__content .hero__buttons {
  opacity: 0;
  transform: translateY(20px);
  animation: heroEntrance 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s forwards;
}

.page-hero__content .hero__badge {
  opacity: 0;
  transform: translateY(20px);
  animation: heroEntrance 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

.page-hero__content h1 {
  opacity: 0;
  transform: translateY(30px);
  animation: heroEntrance 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
}

.page-hero__content p {
  opacity: 0;
  transform: translateY(20px);
  animation: heroEntrance 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
}

@keyframes heroEntrance {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- TEXT SHIMMER (gold headings) --- */
.text-shimmer {
  background: linear-gradient(
    110deg,
    var(--or-dark) 0%,
    var(--or) 30%,
    var(--or-light) 50%,
    var(--or) 70%,
    var(--or-dark) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 4s linear infinite;
}

@keyframes textShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* --- IMAGE REVEAL (clip-path wipe) --- */
.img-reveal {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.img-reveal.revealed {
  clip-path: inset(0 0 0 0);
}

.img-reveal-right {
  clip-path: inset(0 0 0 100%);
  transition: clip-path 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.img-reveal-right.revealed {
  clip-path: inset(0 0 0 0);
}

/* --- GOLD LINE DRAW --- */
.gold-divider-animated {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
  margin: 1.5rem auto;
  transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.gold-divider-animated.revealed {
  width: 60px;
}

/* --- COUNTER GLOW on reveal --- */
[data-count].revealed {
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

/* --- MENU ITEM PREMIUM HOVER --- */
.menu-item {
  transition: background var(--transition), padding var(--transition);
}

.menu-item:hover {
  background: rgba(201, 168, 76, 0.04);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.menu-item:hover .menu-item__name {
  color: var(--or-dark);
}

/* --- FORM FIELD FOCUS GLOW --- */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

/* --- MAP REVEAL --- */
.map-container.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.map-container.reveal.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* --- REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  .custom-cursor,
  .page-transition,
  .btn .ripple {
    display: none !important;
  }
  .gallery-masonry__item img {
    transition: none !important;
  }
  .hero__content .hero__badge,
  .hero__content .hero__title,
  .hero__content .hero__description,
  .hero__content .hero__buttons,
  .page-hero__content .hero__badge,
  .page-hero__content h1,
  .page-hero__content p {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .text-shimmer {
    animation: none;
  }
  .img-reveal,
  .img-reveal-right {
    clip-path: none;
  }
  .gold-divider-animated {
    width: 60px;
  }
}

/* --- Print styles --- */
@media print {
  .nav,
  .sticky-booking,
  .chat-widget,
  .special-offer {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }
}
