:root {
  --navy:      #110A05;
  --navy-2:    #190D06;
  --navy-3:    #22120A;
  --navy-4:    #2C180E;
  --amber:     #C89A3C;
  --amber-lt:  #DEB85A;
  --amber-pale:#F5E6BC;
  --text:      #EDE8E3;
  --text-mid:  #9E8E7E;
  --text-soft: #6B5A48;
  --white:     #FFFFFF;
  --t: 0.3s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 4rem;
  background: rgba(17,10,5,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200,154,60,0.12);
  transition: padding var(--t), box-shadow var(--t);
}
nav.scrolled { padding: 0.9rem 4rem; box-shadow: 0 2px 30px rgba(0,0,0,0.3); }
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 400;
  letter-spacing: 0.1em; color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--amber); font-style: italic; }
.nav-links { display: flex; gap: 2rem; align-items: center; list-style: none; }
.nav-links a {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-mid); text-decoration: none;
  transition: color var(--t); font-weight: 500;
}
.nav-links a:hover, .nav-links a.active { color: var(--amber); }
.btn-reserve {
  background: var(--amber); color: #000000 !important;
  padding: 0.6rem 1.8rem; font-size: 0.68rem;
  letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  border-radius: 50px; transition: background var(--t);
  font-family: 'Jost', sans-serif; display: inline-block;
}
.btn-reserve:hover { background: var(--amber-lt); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; touch-action: manipulation; }
.hamburger span { width: 22px; height: 1px; background: var(--text); display: block; transition: var(--t); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden; text-align: center; padding: 2rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(17,10,5,0.35) 0%, rgba(17,10,5,0.45) 50%, rgba(17,10,5,0.92) 100%),
    url('../images/facade.jpg') center/cover no-repeat;
  transform: scale(1.04);
  animation: hZoom 22s ease-in-out infinite alternate;
}
.hero-bg-fb { position: absolute; inset: 0; z-index: -1; background: radial-gradient(ellipse at 55% 40%, #3D2010 0%, #110A05 70%); }
@keyframes hZoom { from { transform: scale(1.04); } to { transform: scale(1.0); } }

.hero-label {
  position: relative; z-index: 2;
  font-size: 0.68rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--amber); font-family: 'Jost', sans-serif; font-weight: 500;
  margin-bottom: 1.6rem;
  display: flex; align-items: center; gap: 1.5rem;
}
.hero-label::before, .hero-label::after {
  content: ''; display: block; width: 50px; height: 1px;
  background: rgba(200,154,60,0.5);
}
#hero h1 {
  position: relative; z-index: 2;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 300; line-height: 1.0;
  color: var(--white); margin-bottom: 0.3rem;
  letter-spacing: 0.04em;
}
#hero h1 em { color: var(--amber-lt); font-style: italic; display: block; }
.hero-tagline {
  position: relative; z-index: 2;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.15rem; color: rgba(232,237,244,0.72);
  max-width: 500px; margin: 1.4rem auto 2.8rem; line-height: 1.65;
}
.hero-cta { position: relative; z-index: 2; display: flex; gap: 1.2rem; flex-wrap: wrap; justify-content: center; margin-bottom: 5rem; }
.btn-ghost {
  border: 1px solid rgba(200,154,60,0.5); color: var(--amber-lt);
  padding: 0.75rem 2rem; font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; text-decoration: none; font-weight: 500;
  border-radius: 50px; transition: all var(--t); font-family: 'Jost', sans-serif;
}
.btn-ghost:hover { background: rgba(200,154,60,0.1); border-color: var(--amber); }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.hero-scroll span { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(200,154,60,0.55); }
.scroll-line { width: 1px; height: 46px; background: linear-gradient(to bottom, var(--amber), transparent); animation: sp 2s ease-in-out infinite; }
@keyframes sp { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ── SECTIONS ── */
section { padding: 7rem 4rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label {
  font-size: 0.65rem; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--amber); display: block; margin-bottom: 1rem; font-weight: 500;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300; color: var(--white); letter-spacing: 0.03em; line-height: 1.1;
}
.section-header p {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.1rem; color: var(--text-mid);
  max-width: 540px; margin: 1.2rem auto 0;
}
.divider {
  width: 40px; height: 1px;
  background: linear-gradient(to right, transparent, var(--amber), transparent);
  margin: 1.4rem auto 0;
}

/* ── AVANTAGES ── */
#avantages { background: var(--navy-2); }
.avantages-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem; max-width: 1100px; margin: 0 auto;
}
.avantage-card {
  text-align: center; padding: 2.5rem 2rem;
  border: 1px solid rgba(200,154,60,0.1);
  border-radius: 4px;
  background: rgba(255,255,255,0.02);
  transition: border-color var(--t), background var(--t), transform var(--t);
}
.avantage-card:hover { border-color: rgba(200,154,60,0.3); background: rgba(200,154,60,0.03); transform: translateY(-3px); }
.av-icon { font-size: 1.8rem; margin-bottom: 1.2rem; display: block; }
.avantage-card h3 { font-size: 1.05rem; color: var(--amber-lt); margin-bottom: 0.5rem; font-weight: 500; font-family: 'Cormorant Garamond', serif; }
.avantage-card p { font-size: 0.93rem; color: var(--text-mid); line-height: 1.65; text-align: justify; }

/* ── LOGEMENTS ── */
#logements { background: var(--navy); }
.logements-container { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 5rem; }
.logement-card {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(200,154,60,0.1);
  overflow: hidden; border-radius: 4px;
  transition: border-color var(--t), box-shadow var(--t);
}
.logement-card:hover { border-color: rgba(200,154,60,0.28); box-shadow: 0 8px 40px rgba(0,0,0,0.25); }
.logement-card.reverse { direction: rtl; }
.logement-card.reverse > * { direction: ltr; }
.logement-image { position: relative; overflow: hidden; min-height: 480px; }
.logement-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.9s ease; }
.logement-card:hover .logement-image img { transform: scale(1.04); }
.logement-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.4rem 1rem; font-family: 'Jost', sans-serif; font-weight: 500;
  border-radius: 50px; backdrop-filter: blur(6px);
  background: rgba(17,10,5,0.7); color: var(--amber-lt);
  border: 1px solid rgba(200,154,60,0.35);
}
.logement-info {
  padding: 3.5rem; display: flex; flex-direction: column; justify-content: center;
  background: var(--navy-2);
}
.logement-num { font-size: 0.63rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.5rem; font-weight: 500; }
.logement-info h3 { font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 300; color: var(--white); line-height: 1.05; margin-bottom: 0.3rem; }
.logement-theme { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1rem; color: var(--amber); margin-bottom: 1.5rem; }
.logement-desc { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 2rem; text-align: justify; }
.logement-details { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.detail-tag {
  font-size: 0.7rem; letter-spacing: 0.08em;
  padding: 0.32rem 0.9rem; border-radius: 50px;
  border: 1px solid rgba(200,154,60,0.18);
  color: var(--text-mid); background: rgba(200,154,60,0.04);
}
.logement-prix {
  display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 1.5rem;
  padding: 1rem 0; border-top: 1px solid rgba(200,154,60,0.1); border-bottom: 1px solid rgba(200,154,60,0.1);
}
.prix-from { font-size: 0.72rem; color: var(--text-soft); }
.prix-amount { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 400; color: var(--amber); }
.prix-night { font-size: 0.8rem; color: var(--text-soft); }
.logement-actions { display: flex; gap: 1rem; margin-top: 1.5rem; }
.btn-voir {
  border: 1px solid rgba(200,154,60,0.3); color: var(--amber-lt);
  padding: 0.65rem 1.5rem; font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; text-decoration: none; border-radius: 50px;
  transition: all var(--t); font-family: 'Jost', sans-serif; font-weight: 500;
  cursor: pointer; background: none; display: inline-block;
}
.btn-voir:hover { background: rgba(200,154,60,0.08); border-color: var(--amber); }

/* ── EQUIPEMENTS ── */
#equipements { background: var(--navy-2); }
.equip-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem; max-width: 1100px; margin: 0 auto;
}
.equip-item {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(200,154,60,0.08);
  border-radius: 4px; transition: border-color var(--t), background var(--t);
}
.equip-item:hover { border-color: rgba(200,154,60,0.22); background: rgba(200,154,60,0.03); }
.equip-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 0.1rem; }
.equip-text h4 { font-size: 0.88rem; color: var(--text); font-family: 'Jost', sans-serif; font-weight: 500; margin-bottom: 0.2rem; }
.equip-text p { font-size: 0.88rem; color: var(--text-mid); text-align: justify; }

/* ── EXTRAS ── */
#extras { background: var(--navy-2); }
.extras-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; max-width: 1100px; margin: 0 auto;
}
.extra-card {
  border: 1px solid rgba(200,154,60,0.1); border-radius: 4px;
  overflow: hidden; background: var(--navy-3);
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.extra-card:hover { border-color: rgba(200,154,60,0.28); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.extra-img {
  height: 180px; display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; position: relative;
}
.extra-img::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50%; background: linear-gradient(to bottom, transparent, var(--navy-3)); }
.extra-body { padding: 1.5rem; }
.extra-body h3 { font-size: 1.15rem; font-weight: 400; color: var(--white); margin-bottom: 0.4rem; font-family: 'Cormorant Garamond', serif; }
.extra-body > p { font-size: 0.92rem; color: var(--text-mid); margin-bottom: 1rem; line-height: 1.65; text-align: justify; }
.extra-prix { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.35rem !important; font-weight: 600; color: var(--amber); margin-bottom: 1rem; letter-spacing: 0.02em; display: block; }
.btn-extra {
  font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--amber); border: 1px solid rgba(200,154,60,0.35);
  padding: 0.45rem 1.2rem; text-decoration: none; border-radius: 50px;
  transition: all var(--t); display: inline-block; font-family: 'Jost', sans-serif; font-weight: 500;
}
.btn-extra:hover { background: rgba(200,154,60,0.1); border-color: var(--amber); }

/* ── AVIS ── */
#avis { background: var(--navy); }
.avis-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; max-width: 1100px; margin: 0 auto;
}
.avis-card {
  padding: 2rem; background: var(--navy-2);
  border: 1px solid rgba(200,154,60,0.08); border-radius: 4px;
  transition: border-color var(--t);
}
.avis-card:hover { border-color: rgba(200,154,60,0.22); }
.stars { color: var(--amber); font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.avis-text {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.05rem; color: rgba(232,237,244,0.82); line-height: 1.7; margin-bottom: 1.5rem; text-align: justify;
}
.avis-author {
  display: flex; align-items: center; gap: 0.8rem;
  padding-top: 1rem; border-top: 1px solid rgba(200,154,60,0.08);
}
.avis-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy-4); display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; color: var(--amber); font-weight: 600; flex-shrink: 0;
  border: 1px solid rgba(200,154,60,0.2);
}
.avis-author-info h4 { font-size: 0.85rem; font-weight: 500; color: var(--text); }
.avis-author-info p { font-size: 0.74rem; color: var(--text-soft); }
.note-globale {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  max-width: 190px; margin: 0 auto 3rem; padding: 2rem;
  border: 1px solid rgba(200,154,60,0.2); border-radius: 4px;
  background: rgba(200,154,60,0.04);
}
.note-number { font-family: 'Cormorant Garamond', serif; font-size: 4rem; color: var(--amber); font-weight: 300; line-height: 1; }
.note-label { font-size: 0.67rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-mid); }

/* ── FAQ ── */
#faq { background: var(--navy-2); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(200,154,60,0.1); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0; cursor: pointer;
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400;
  color: var(--text); transition: color var(--t); background: none; border: none; width: 100%; text-align: left;
}
.faq-question:hover { color: var(--amber); }
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%;
  border: 1px solid rgba(200,154,60,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--amber); transition: transform var(--t), background var(--t);
}
.faq-item.active .faq-icon { transform: rotate(45deg); background: rgba(200,154,60,0.12); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-item.active .faq-answer { max-height: 300px; padding-bottom: 1.5rem; }
.faq-answer p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; text-align: justify; }

/* ── LOCALISATION ── */
#localisation { background: var(--navy); }
.localisation-container { max-width: 1100px; margin: 0 auto; }
.map-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: stretch; }
.map-embed {
  overflow: hidden; height: 440px;
  border: 1px solid rgba(200,154,60,0.15); border-radius: 4px;
  filter: saturate(0.5) brightness(0.8);
}
.map-embed iframe { width: 100%; height: 100%; border: none; }
.map-info h3 { font-size: 1.8rem; font-weight: 300; color: var(--white); margin-bottom: 1.5rem; }
.map-point {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.2rem; padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(200,154,60,0.08);
}
.map-point:last-child { border-bottom: none; }
.map-point-icon { font-size: 1.1rem; width: 2rem; text-align: center; flex-shrink: 0; }
.map-point-text h4 { font-size: 0.88rem; font-weight: 500; color: var(--text); margin-bottom: 0.15rem; }
.map-point-text p { font-size: 0.88rem; color: var(--text-mid); }

/* ── BLOG ── */
#blog { background: var(--navy-2); }
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; max-width: 1100px; margin: 0 auto;
}
.blog-card {
  border: 1px solid rgba(200,154,60,0.1); border-radius: 4px;
  overflow: hidden; background: var(--navy);
  transition: border-color var(--t), transform var(--t);
}
.blog-card:hover { border-color: rgba(200,154,60,0.28); transform: translateY(-3px); }
.blog-img { height: 200px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-img img { transform: scale(1.04); }
.blog-body { padding: 1.6rem; }
.blog-cat { font-size: 0.63rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.6rem; display: block; font-weight: 500; }
.blog-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.12rem; font-weight: 400; color: var(--white); margin-bottom: 0.5rem; line-height: 1.35; }
.blog-body p { font-size: 0.92rem; color: var(--text-mid); margin-bottom: 1rem; line-height: 1.65; text-align: justify; }
.blog-date { font-size: 0.73rem; color: var(--text-soft); }
.blog-more { text-align: center; margin-top: 3rem; }
.btn-blog {
  border: 1px solid rgba(200,154,60,0.3); color: var(--amber-lt);
  padding: 0.85rem 2.5rem; font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; text-decoration: none; border-radius: 50px;
  transition: all var(--t); font-family: 'Jost', sans-serif; font-weight: 500; display: inline-block;
}
.btn-blog:hover { background: rgba(200,154,60,0.1); border-color: var(--amber); }

/* ── CONTACT ── */
#contact { background: var(--navy-3); text-align: center; padding: 7rem 4rem; }
.contact-inner {
  max-width: 580px; margin: 0 auto; padding: 4rem;
  border: 1px solid rgba(200,154,60,0.15); border-radius: 4px;
  background: var(--navy-2);
}
.contact-inner h2 { font-size: 2.2rem; font-weight: 300; color: var(--white); margin-bottom: 0.5rem; }
.contact-inner p { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--text-mid); margin-bottom: 2rem; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input {
  flex: 1; padding: 0.9rem 1.2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,154,60,0.2); border-right: none;
  color: var(--text); font-family: 'Jost', sans-serif; font-size: 0.9rem;
  border-radius: 50px 0 0 50px; outline: none; transition: border-color var(--t);
}
.newsletter-form input::placeholder { color: var(--text-soft); }
.newsletter-form input:focus { border-color: var(--amber); }
.newsletter-form button {
  padding: 0.9rem 1.8rem; background: var(--amber);
  border: 1px solid var(--amber); color: var(--navy);
  font-family: 'Jost', sans-serif; font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  cursor: pointer; border-radius: 0 50px 50px 0; transition: background var(--t);
}
.newsletter-form button:hover { background: var(--amber-lt); }
.contact-links { display: flex; justify-content: center; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.contact-link {
  font-size: 0.78rem; letter-spacing: 0.1em;
  color: var(--text-mid); text-decoration: none;
  transition: color var(--t); display: flex; align-items: center; gap: 0.5rem;
}
.contact-link:hover { color: var(--amber); }

/* ── FOOTER ── */
footer { background: var(--navy-2); border-top: 1px solid rgba(200,154,60,0.1); padding: 3.5rem 4rem 2rem; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto 2rem; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 400; color: var(--white); text-decoration: none; display: block; margin-bottom: 0.8rem; }
.footer-logo span { color: var(--amber); font-style: italic; }
.footer-brand p { font-size: 0.83rem; color: var(--text-mid); line-height: 1.75; max-width: 260px; }
.footer-col h4 { font-size: 0.63rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--amber); margin-bottom: 1.2rem; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.84rem; color: var(--text-mid); text-decoration: none; transition: color var(--t); }
.footer-col ul li a:hover { color: var(--amber); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 1.5rem;
  border-top: 1px solid rgba(200,154,60,0.07);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.73rem; color: var(--text-soft); flex-wrap: wrap; gap: 1rem;
}
.payment-badges { display: flex; gap: 0.5rem; }
.payment-badge { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 0.25rem 0.6rem; border-radius: 3px; font-size: 0.67rem; color: var(--text-mid); }

/* ── RESERVATION ── */
#reservation { background: var(--navy-3); }
.resa-info h3 { font-size: 1.4rem; font-weight: 300; color: var(--white); margin-bottom: 1.5rem; }
.resa-info-item {
  display: flex; gap: 1rem; margin-bottom: 1.4rem; padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(200,154,60,0.08);
}
.resa-info-item:last-child { border-bottom: none; }
.resa-info-icon { font-size: 1.2rem; flex-shrink: 0; width: 2.5rem; text-align: center; }
.resa-info-text h4 { font-size: 0.88rem; font-weight: 500; color: var(--text); margin-bottom: 0.25rem; }
.resa-info-text p { font-size: 0.88rem; color: var(--text-mid); text-align: justify; }

/* ── PAGE HERO (pages secondaires) ── */
.page-hero {
  padding: 10rem 4rem 5rem;
  background: var(--navy-2);
  border-bottom: 1px solid rgba(200,154,60,0.1);
  text-align: center;
}
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300; color: var(--white); margin-bottom: 0.5rem; }
.page-hero p { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem; color: var(--text-mid); }

/* ── STICKY BAR ── */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(17,10,5,0.97); border-top: 1px solid rgba(200,154,60,0.15);
  padding: 1rem 4rem; display: flex; align-items: center; justify-content: space-between;
  z-index: 99; transform: translateY(100%); transition: transform 0.4s ease;
  backdrop-filter: blur(12px);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar-text h4 { font-size: 0.9rem; color: var(--text); font-weight: 500; }
.sticky-bar-text p { font-size: 0.77rem; color: var(--text-mid); }

/* ── ANIMATIONS ── */
.fade-in { opacity: 1 !important; transform: none !important; transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  section { padding: 5rem 2.5rem; }
  nav { padding: 1rem 2rem; }
  nav.scrolled { padding: 0.7rem 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .logement-card { grid-template-columns: 1fr; }
  .logement-card.reverse { direction: ltr; }
  .logement-image { min-height: 320px; }
  .map-grid { grid-template-columns: 1fr; }
  .sticky-bar { padding: 1rem 2rem; }
  .page-hero { padding: 8rem 2.5rem 4rem; }
}
@media (max-width: 768px) {
  section { padding: 4rem 1.5rem; }
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.7rem 1.5rem; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 1.2rem;
    position: fixed; inset: 0; top: 64px;
    background: rgba(17,10,5,0.99); padding: 3rem 2rem;
    align-items: center; justify-content: flex-start;
    z-index: 99;
  }
  .hamburger { display: flex; }
  .hero-cta { flex-direction: column; align-items: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .logement-info { padding: 2rem; }
  .contact-inner { padding: 2rem 1.5rem; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid rgba(200,154,60,0.2); border-radius: 50px; }
  .newsletter-form button { border-radius: 50px; }
  #contact { padding: 4rem 1.5rem; }
  .sticky-bar { padding: 0.8rem 1.5rem; }
  .page-hero { padding: 8rem 1.5rem 3rem; }
}
