:root {
  --cream: #f5f0e8;
  --warm: #e8d5b7;
  --brick: #c0392b;
  --brick-dark: #922b21;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --text: #2c1810;
  --text-mid: #5a3e35;
  --text-light: #9a7c72;
  --white: #fff;
  --section-bg: #faf7f2;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(44,24,16,0.96); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 60px;
}
.nav-logo { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1.1rem; letter-spacing: 0.04em; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: var(--warm); font-size: 0.8rem; text-decoration: none; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--brick); color: #fff; padding: 8px 18px; border-radius: 2px; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; text-decoration: none; transition: background 0.2s; }
.nav-cta:hover { background: var(--brick-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 1.5px; background: var(--warm); transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; top: 60px; left: 0; right: 0; background: rgba(44,24,16,0.98); z-index: 99; padding: 20px 5vw; flex-direction: column; gap: 0; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--warm); text-decoration: none; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* HERO */
.hero {
  min-height: 100vh; padding-top: 60px;
  background: var(--text);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #3d1a10 0%, #1a0a06 60%, #2c1810 100%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.hero-content { position: relative; z-index: 2; padding: 2rem 5vw; max-width: 800px; }
.hero-eyebrow { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; font-weight: 500; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 8vw, 5.5rem); color: var(--white); line-height: 1.05; margin-bottom: 0.3rem; }
.hero-title em { color: var(--gold); font-style: italic; }
.hero-sub { font-size: clamp(0.75rem, 2vw, 0.95rem); color: var(--warm); letter-spacing: 0.25em; text-transform: uppercase; margin: 1.2rem 0 2rem; font-weight: 300; }
.hero-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.badge { border: 1px solid rgba(201,168,76,0.4); color: var(--gold-light); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 6px 14px; border-radius: 1px; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--brick); color: #fff; padding: 14px 32px; font-family: 'Jost', sans-serif; font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; text-decoration: none; border-radius: 2px; transition: background 0.2s; }
.btn-primary:hover { background: var(--brick-dark); }
.btn-outline { border: 1px solid var(--gold); color: var(--gold); padding: 14px 32px; font-family: 'Jost', sans-serif; font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; text-decoration: none; border-radius: 2px; transition: all 0.2s; }
.btn-outline:hover { background: var(--gold); color: var(--text); }
.scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text-light); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollpulse 2s ease-in-out infinite; }
@keyframes scrollpulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* SECTIONS COMMUNES */
section { padding: 80px 5vw; }
.section-label { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 0.8rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--text); line-height: 1.15; }
.section-title em { font-style: italic; color: var(--brick); }
.divider { width: 50px; height: 2px; background: var(--gold); margin: 20px 0 32px; }
.centered { text-align: center; }
.centered .divider { margin-left: auto; margin-right: auto; }

/* ABOUT / ACCUEIL */
.about { background: var(--section-bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1100px; margin: 0 auto; }
.about-text p { font-size: 1rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 1rem; font-weight: 300; }
.about-photo { position: relative; }
.about-photo img { width: 100%; height: 380px; object-fit: cover; border-radius: 2px; display: block; }
.about-photo-frame { position: absolute; bottom: -16px; right: -16px; width: 100%; height: 100%; border: 2px solid var(--gold); border-radius: 2px; z-index: -1; }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.stat { text-align: center; padding: 20px; background: var(--white); border: 1px solid var(--warm); border-radius: 2px; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--brick); font-weight: 600; }
.stat-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); margin-top: 4px; }

/* CHAMBRES */
.chambres { background: var(--cream); }
.chambres-header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; max-width: 1100px; margin: 0 auto; }
.room-card { background: var(--white); border: 1px solid var(--warm); border-radius: 2px; overflow: hidden; transition: transform 0.25s; }
.room-card:hover { transform: translateY(-4px); }
.room-header { padding: 20px 24px 0; }
.room-tier { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; padding: 4px 10px; border-radius: 1px; display: inline-block; margin-bottom: 10px; }
.tier-vip { background: #fdf3e3; color: #8a5c00; border: 1px solid #c9a84c; }
.tier-mid { background: #e8f4fd; color: #1a5c8a; border: 1px solid #4a90c4; }
.tier-std { background: #f0faf0; color: #2a6a2a; border: 1px solid #5a9a5a; }
.room-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--text); margin-bottom: 4px; }
.room-rooms { font-size: 0.75rem; color: var(--text-light); letter-spacing: 0.05em; margin-bottom: 12px; }
.room-equip { font-size: 0.78rem; color: var(--text-mid); line-height: 1.6; padding: 12px 24px; background: var(--section-bg); margin: 0 24px 16px; border-left: 2px solid var(--gold); font-style: italic; }
.room-prices { padding: 0 24px 20px; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid var(--warm); font-size: 0.82rem; }
.price-row:last-child { border-bottom: none; }
.price-label { color: var(--text-mid); font-weight: 300; }
.price-val { font-weight: 500; color: var(--text); white-space: nowrap; }
.price-val.promo { color: var(--brick); }

/* RESTAURANT */
.restaurant { background: var(--text); color: var(--white); }
.restaurant .section-label { color: var(--gold); }
.restaurant .section-title { color: var(--white); }
.restaurant .divider { background: var(--gold); }
.menu-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.tab-btn { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.6); padding: 8px 18px; border-radius: 1px; font-family: 'Jost', sans-serif; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: all 0.2s; font-weight: 500; }
.tab-btn.active, .tab-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--text); }
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.menu-cat { margin-bottom: 8px; }
.menu-cat-title { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.1); font-weight: 600; }
.menu-item { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.83rem; }
.menu-item:last-child { border-bottom: none; }
.menu-item-name { color: rgba(255,255,255,0.85); font-weight: 300; line-height: 1.4; }
.menu-item-price { color: var(--gold-light); font-weight: 500; white-space: nowrap; flex-shrink: 0; font-size: 0.8rem; }

/* GALERIE */
.galerie { background: var(--section-bg); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); grid-auto-rows: 240px; gap: 16px; max-width: 1200px; margin: 0 auto; }
.gallery-item { overflow: hidden; border-radius: 2px; background: linear-gradient(135deg, var(--warm) 0%, var(--cream) 100%); position: relative; min-height: 240px; cursor: pointer; }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item a { display: block; width: 100%; height: 100%; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease; min-height: 240px; opacity: 0; animation: imageFadeIn 0.6s ease forwards; }
@keyframes imageFadeIn { from { opacity: 0; transform: scale(1.05); } to { opacity: 1; transform: scale(1); } }
.gallery-item:hover img { transform: scale(1.08); filter: brightness(1.05) saturate(1.1); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(44,24,16,0); transition: background 0.4s ease; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.gallery-item:hover .gallery-overlay { background: rgba(44,24,16,0.35); }
.gallery-item::before { content: '+'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0); font-size: 2rem; color: var(--gold); font-weight: 300; opacity: 0; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); z-index: 10; pointer-events: none; }
.gallery-item:hover::before { transform: translate(-50%, -50%) scale(1); opacity: 1; }
.gallery-item a { text-decoration: none; }

/* INFOS */
.infos { background: var(--cream); }
.infos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 900px; margin: 0 auto; }
.info-block { background: var(--white); border: 1px solid var(--warm); border-radius: 2px; padding: 28px; }
.info-block-title { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--text); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.info-block-title svg { color: var(--gold); flex-shrink: 0; }
.info-list { list-style: none; }
.info-list li { font-size: 0.85rem; color: var(--text-mid); padding: 7px 0; border-bottom: 1px solid var(--warm); display: flex; gap: 10px; line-height: 1.5; font-weight: 300; }
.info-list li:last-child { border-bottom: none; }
.info-list li::before { content: '✓'; color: var(--gold); font-weight: 600; flex-shrink: 0; }

/* CONTACT */
.contact { background: var(--text); }
.contact .section-label { color: var(--gold); }
.contact .section-title { color: var(--white); }
.contact .divider { background: var(--gold); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 900px; margin: 0 auto; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-icon { width: 44px; height: 44px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); border-radius: 2px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { color: var(--gold); }
.contact-info-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
.contact-info-value { color: var(--warm); font-size: 0.9rem; font-weight: 300; }
.contact-info-value a { color: var(--warm); text-decoration: none; }
.contact-info-value a:hover { color: var(--gold); }
.call-btn { display: inline-flex; align-items: center; gap: 10px; background: #2563eb; color: #fff; padding: 14px 28px; border-radius: 2px; text-decoration: none; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em; margin-top: 8px; transition: background 0.2s; }
.call-btn:hover { background: #1d4ed8; }
.contact-note { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 2px; padding: 24px; }
.contact-note h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--gold); margin-bottom: 12px; }
.contact-note p { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 8px; font-weight: 300; }
.contact-note p strong { color: rgba(255,255,255,0.85); font-weight: 500; }

/* FOOTER */
footer { background: #120804; padding: 32px 5vw; text-align: center; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--gold); margin-bottom: 10px; }
.footer-tagline { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-light); margin-bottom: 18px; }
.footer-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.footer-links a { font-size: 0.72rem; color: var(--text-light); text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.7rem; color: #4a3028; }

/* CALL FLOAT */
.call-float { position: fixed; bottom: 24px; right: 24px; z-index: 200; width: 54px; height: 54px; background: #2563eb; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 16px rgba(0,0,0,0.3); transition: transform 0.2s; }
.call-float:hover { transform: scale(1.08); }
.call-float svg { width: 28px; height: 28px; stroke: white; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photo { display: none; }
  .stats-row { grid-template-columns: repeat(3,1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 12px; }
  .gallery-item:first-child { grid-column: 1 / 3; grid-row: span 1; }
  .gallery-item { min-height: 200px; }
  .gallery-item img { min-height: 200px; }
  .infos-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  section { padding: 56px 5vw; }
  .rooms-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; gap: 10px; }
  .gallery-item:first-child { grid-column: 1; }
  .gallery-grid { grid-template-rows: auto; }
  .gallery-item { min-height: 180px; }
  .gallery-item img { min-height: 180px; }
  .gallery-item::before { font-size: 1.5rem; }
}

/* ANIMATIONS */
@keyframes fadein { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform: translateY(0); } }
.hero-content > * { animation: fadein 0.7s ease forwards; opacity: 0; }
.hero-eyebrow { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.25s; }
.hero-sub { animation-delay: 0.4s; }
.hero-badges { animation-delay: 0.5s; }
.hero-btns { animation-delay: 0.6s; }

.gallery-item {
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.gallery-item img {
  filter: saturate(1.05) contrast(1.02);
}
