:root {
  --black: #0d0d0d;
  --white: #fafaf8;
  --warm: #f5f0e8;
  --gold: #b8965a;
  --gold-light: #d4b483;
  --gray: #888;
  --gray-light: #e8e5e0;
  --text: #2a2a2a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; font-weight: 300; color: var(--text); background: var(--white); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 72px;
  background: rgba(250,250,248,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-light); transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.07); }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-img { height: 40px; object-fit: contain; }
.nav-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 400; color: var(--black); line-height: 1.2; }
.nav-logo-text em { display: block; font-size: .62rem; font-family: 'Jost', sans-serif; font-style: normal; font-weight: 300; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-size: .75rem; font-weight: 400; letter-spacing: .15em; text-transform: uppercase; color: var(--black); text-decoration: none; position: relative; transition: color .2s; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 100%; height: 1px; background: var(--gold); transition: right .25s ease; }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { right: 0; }
.nav-cta { background: var(--black) !important; color: var(--white) !important; padding: 10px 22px; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold) !important; }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-burger span { display: block; width: 24px; height: 1px; background: var(--black); transition: .3s; }

/* HERO */
#hero { height: 100vh; min-height: 600px; position: relative; display: flex; align-items: flex-end; padding-bottom: 80px; overflow: hidden; }
.hero-video-wrap { position: absolute; inset: 0; }
.hero-video-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 45%, rgba(13,13,13,.08), rgba(13,13,13,.6) 62%);
}
.hero-video-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.26) 55%, rgba(0,0,0,.05) 100%); }
.hero-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-content { position: relative; z-index: 2; padding: 0 80px; max-width: 700px; }
.hero-panel {
  background: rgba(10, 10, 10, .28);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  padding: 34px 36px;
  box-shadow: 0 22px 46px rgba(0,0,0,.25);
}
.hero-label { font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 300; color: #fff; line-height: 1.1; margin-bottom: 20px; }
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-size: .9rem; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 32px; letter-spacing: .02em; }
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-outline {
  color: #fff;
  border-color: rgba(255,255,255,.75);
}
.hero-outline:hover {
  border-color: var(--gold);
  background: rgba(184,150,90,.18);
  color: #fff;
}
.hero-scroll {
  position: absolute;
  right: 80px;
  bottom: 40px;
  z-index: 2;
  font-size: .65rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

/* BOOKING BAR */
.booking-bar { background: var(--black); display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.booking-field { display: flex; align-items: center; gap: 12px; padding: 18px 28px; border-right: 1px solid rgba(255,255,255,.1); cursor: pointer; transition: background .2s; }
.booking-field:hover { background: rgba(255,255,255,.05); }
.booking-field-icon { color: var(--gold); font-size: 1rem; }
.booking-field-label { display: flex; flex-direction: column; }
.booking-field-label span:first-child { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 2px; }
.booking-field-label span:last-child, .booking-field-label input, .booking-field-label select { font-size: .85rem; color: var(--white); font-weight: 300; }
.booking-field-label input[type="date"] { background: none; border: none; outline: none; color: var(--white); font-family: 'Jost', sans-serif; font-size: .85rem; cursor: pointer; width: 130px; }
.booking-field-label input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); opacity: .5; }
.booking-select { background: none; border: none; outline: none; color: var(--white); font-family: 'Jost', sans-serif; font-size: .85rem; cursor: pointer; }
.booking-select option { background: var(--black); }
.booking-btn { background: var(--gold); color: #fff; border: none; padding: 0 40px; height: 64px; font-family: 'Jost', sans-serif; font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; cursor: pointer; transition: background .2s; }
.booking-btn:hover { background: var(--gold-light); }

/* SECTIONS */
section { padding: 100px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section-label { font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; line-height: 1.15; color: var(--black); margin-bottom: 24px; }
.section-title em { font-style: italic; }
.section-text { font-size: .95rem; line-height: 1.85; color: #555; max-width: 600px; }

/* PAGE HEADER */
.page-header { padding: 160px 0 80px; background: var(--warm); text-align: center; }
.page-header .section-label { display: block; text-align: center; }
.page-header .section-title { text-align: center; }
.page-header .section-text { margin: 0 auto; text-align: center; }

/* BUTTONS */
.btn-primary { display: inline-block; background: var(--black); color: #fff; border: none; padding: 14px 36px; font-family: 'Jost', sans-serif; font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; cursor: pointer; text-decoration: none; transition: background .2s; }
.btn-primary:hover { background: var(--gold); }
.btn-outline { display: inline-block; background: none; color: var(--black); border: 1px solid var(--black); padding: 12px 32px; font-family: 'Jost', sans-serif; font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; cursor: pointer; text-decoration: none; transition: all .2s; }
.btn-outline:hover { background: var(--black); color: #fff; }
.btn-gold { display: inline-block; background: var(--gold); color: #fff; padding: 14px 36px; font-family: 'Jost', sans-serif; font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; cursor: pointer; text-decoration: none; transition: background .2s; border: none; }
.btn-gold:hover { background: var(--gold-light); }

/* BIENVENUE */
#bienvenue { background: var(--white); }
.bienvenue-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.bienvenue-img-stack { position: relative; height: 500px; }
.bienvenue-img-main { position: absolute; top: 0; left: 0; width: 75%; height: 80%; object-fit: cover; }
.bienvenue-img-accent { position: absolute; bottom: 0; right: 0; width: 60%; height: 55%; object-fit: cover; border: 6px solid var(--white); }
.bienvenue-badge { position: absolute; top: 50%; left: 55%; transform: translate(-50%, -50%); width: 90px; height: 90px; background: var(--gold); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; z-index: 3; }
.bienvenue-badge span { font-size: .55rem; letter-spacing: .15em; text-transform: uppercase; font-family: 'Jost', sans-serif; }
.amenities { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
.amenity { display: flex; align-items: center; gap: 10px; font-size: .82rem; color: #444; }
.amenity-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ROOMS */
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 0; }
.room-card { position: relative; overflow: hidden; aspect-ratio: 3/4; cursor: pointer; }
.room-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; display: block; }
.room-card:hover img { transform: scale(1.05); }
.room-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,0) 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 28px 24px; transition: background .3s; }
.room-card:hover .room-overlay { background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.1) 55%); }
.room-tag { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 6px; }
.room-name { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; color: #fff; margin-bottom: 8px; }
.room-desc { font-size: .78rem; color: rgba(255,255,255,.7); line-height: 1.5; max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.room-card:hover .room-desc { max-height: 80px; }
.room-link { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-light); text-decoration: none; margin-top: 10px; opacity: 0; transition: opacity .3s .1s; }
.room-card:hover .room-link { opacity: 1; }
.room-card.wide { grid-column: span 2; aspect-ratio: auto; height: 350px; }
.room-card.wide img { height: 100%; }

/* ROOM DETAIL (chambres.html) */
.room-detail { padding: 80px 0; border-bottom: 1px solid var(--gray-light); }
.room-detail:last-child { border-bottom: none; }
.room-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.room-detail-grid.reverse { direction: rtl; }
.room-detail-grid.reverse > * { direction: ltr; }
.room-detail-img { width: 100%; height: 420px; object-fit: cover; display: block; }
.room-detail h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; margin-bottom: 8px; }
.room-detail-size { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: block; }
.room-detail p { font-size: .92rem; line-height: 1.8; color: #555; margin-bottom: 16px; }
.room-features { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 20px 0 24px; }
.room-features li { font-size: .82rem; color: #444; display: flex; gap: 8px; align-items: center; }
.room-features li::before { content: '✓'; color: var(--gold); font-weight: 500; }

/* HIGHLIGHTS */
.highlights-bar { background: var(--black); padding: 60px 0; }
.highlights-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.08); }
.highlight { background: var(--black); padding: 40px 28px; text-align: center; }
.highlight-icon { font-size: 1.8rem; margin-bottom: 14px; color: var(--gold); display: block; }
.highlight-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; color: #fff; margin-bottom: 8px; }
.highlight-text { font-size: .78rem; color: rgba(255,255,255,.45); line-height: 1.6; }

/* SPLIT */
.split-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.split-text { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; }
.split-img { background-size: cover; background-position: center; min-height: 400px; }

/* GALERIE */
.gallery-full { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.gallery-full img { width: 100%; height: 280px; object-fit: cover; display: block; transition: opacity .3s; cursor: pointer; }
.gallery-full img:hover { opacity: .85; }
.gallery-full .g-wide { grid-column: span 2; }
.gallery-full .g-tall { grid-row: span 2; height: auto; }
.gallery-full .g-tall img { height: 100%; min-height: 563px; }

/* LOCATION */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.loc-items { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.loc-item { display: flex; gap: 16px; align-items: flex-start; }
.loc-icon { width: 36px; height: 36px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: .9rem; flex-shrink: 0; }
.loc-item-text strong { display: block; font-size: .82rem; font-weight: 500; margin-bottom: 2px; }
.loc-item-text span, .loc-item-text a { font-size: .82rem; color: #666; text-decoration: none; }
.loc-item-text a:hover { color: var(--gold); }
.map-frame { width: 100%; height: 420px; border: none; display: block; }

/* CONTACT FORM */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: #999; }
.form-group input, .form-group textarea, .form-group select { background: none; border: none; border-bottom: 1px solid var(--gray-light); padding: 10px 0; font-family: 'Jost', sans-serif; font-size: .9rem; font-weight: 300; color: var(--black); outline: none; transition: border-color .2s; width: 100%; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-bottom-color: var(--gold); }
.form-group textarea { resize: none; height: 100px; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-block h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; margin-bottom: 8px; }
.contact-info-block p { font-size: .88rem; color: #666; line-height: 1.7; }
.contact-info-block a { color: var(--gold); text-decoration: none; }
.contact-divider { height: 1px; background: var(--gray-light); }

/* AVP BOOKING WIDGET */
.avp-widget {
  margin-top: 28px;
  border: 1px solid var(--gray-light);
  background: #fff;
  padding: 24px;
}

.avp-widget table {
  width: 100%;
  border-collapse: collapse;
}

.avp-widget td {
  padding: 10px 0;
  font-size: .9rem;
  color: #444;
  line-height: 1.6;
}

.avp-widget select {
  margin: 0 6px;
  border: 1px solid var(--gray-light);
  background: #fff;
  color: var(--black);
  font-family: 'Jost', sans-serif;
  font-size: .85rem;
  padding: 8px 10px;
  min-width: 110px;
}

.avp-widget input[type="button"] {
  background: var(--black);
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}

.avp-widget input[type="button"]:hover {
  background: var(--gold);
}

.avp-widget a {
  color: var(--gold);
  text-decoration: none;
  font-size: .82rem;
}

.avp-widget a:hover {
  color: var(--black);
}

/* PROXIMITE */
.proximite-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.proximite-card { padding: 32px; border: 1px solid var(--gray-light); }
.proximite-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; margin-bottom: 12px; }
.proximite-card p { font-size: .85rem; color: #666; line-height: 1.7; }
.proximite-card .dist { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block; }

/* FOOTER */
footer { background: var(--black); color: rgba(255,255,255,.5); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-tagline { font-size: .78rem; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-btn { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); text-decoration: none; font-size: .85rem; transition: all .2s; }
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h5 { font-size: .65rem; font-weight: 500; letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .82rem; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: .72rem; }

/* ANIMATIONS */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav { padding: 0 24px; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile-open .nav-links { display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: var(--white); padding: 24px 48px; gap: 20px; border-bottom: 1px solid var(--gray-light); z-index: 99; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .split-section { grid-template-columns: 1fr; }
  .split-img { min-height: 300px; }
}
@media (max-width: 768px) {
  .bienvenue-grid, .loc-grid, .contact-grid, .room-detail-grid, .room-detail-grid.reverse { grid-template-columns: 1fr; direction: ltr; }
  .bienvenue-img-stack { height: 300px; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .room-card.wide { grid-column: span 2; height: 220px; }
  .gallery-full { grid-template-columns: 1fr 1fr; }
  .gallery-full .g-wide, .gallery-full .g-tall { grid-column: auto; grid-row: auto; }
  .gallery-full img, .gallery-full .g-tall img { height: 200px; min-height: unset; }
  .proximite-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 0 24px; }
  .hero-panel { padding: 24px 20px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn-primary,
  .hero-actions .hero-outline { width: 100%; text-align: center; }
  .hero-scroll { right: 24px; bottom: 28px; letter-spacing: .18em; }
  .container { padding: 0 24px; }
  .split-text { padding: 60px 24px; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 70px 0; }

  .avp-widget {
    padding: 16px;
  }

  .avp-widget td {
    display: block;
    width: 100%;
    text-align: left;
  }

  .avp-widget select {
    min-width: 0;
    width: 100%;
    margin: 6px 0;
  }

  .avp-widget input[type="button"] {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .rooms-grid { grid-template-columns: 1fr; }
  .room-card.wide { grid-column: auto; }
  .highlights-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .amenities { grid-template-columns: 1fr; }
}
