:root { --cream: #F4EFE8; --white: #FFFFFF; --dark: #1A1A1A; --charcoal: #2D2D2D; --mid: #5A5A5A; --light: #8A8A8A; --border: #E2DDD4; --accent: #C9A462; --accent-d: #A8843E; --radius: 10px; --shadow: 0 4px 24px rgba(0,0,0,.10); --shadow-l: 0 2px 10px rgba(0,0,0,.07); --nav-h: 64px; --trans: .3s ease; }
*, ::before, ::after { box-sizing: border-box; margin: 0px; padding: 0px; }

/* ── Protection des images (dissuasion du téléchargement) ── */
img { -webkit-user-drag: none; -khtml-user-drag: none; -moz-user-drag: none; user-drag: none; -webkit-user-select: none; -moz-user-select: none; user-select: none; -webkit-touch-callout: none; }
.gallery-item, .plan-wrapper, .lb-content, .hero-slide { -webkit-touch-callout: none; }
.img-shield { position: absolute; inset: 0px; z-index: 3; cursor: zoom-in; }
.lb-content .img-shield { cursor: default; }

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: Inter, sans-serif; background: var(--cream); color: var(--dark); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1, h2, h3, h4 { font-family: "Playfair Display", serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 500; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 500; }
h3 { font-size: 1.15rem; font-weight: 600; margin: 1.8rem 0px 0.6rem; display: flex; align-items: center; gap: 0.5rem; color: var(--charcoal); }
h3 i { font-size: 0.9rem; color: var(--accent); }
h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.8rem; }
p { line-height: 1.75; color: var(--mid); }
strong { color: var(--dark); font-weight: 600; }
.container { max-width: 1200px; margin: 0px auto; padding: 0px 24px; }
section { padding: 80px 0px; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { color: var(--charcoal); }
.section-sub { color: var(--light); margin-top: 0.5rem; font-size: 0.95rem; }
.btn-primary { display: inline-block; padding: 0.85rem 2rem; background: var(--accent); color: var(--white); border-radius: var(--radius); font-weight: 600; font-size: 0.95rem; transition: background var(--trans), transform var(--trans); }
.btn-primary:hover { background: var(--accent-d); transform: translateY(-1px); }
.btn-secondary { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.75rem; border: 1.5px solid var(--border); border-radius: var(--radius); color: var(--charcoal); font-size: 0.9rem; font-weight: 500; transition: border-color var(--trans), color var(--trans), background var(--trans); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); background: rgba(201, 164, 98, 0.06); }
.btn-cta { display: inline-block; margin-top: 2rem; padding: 1rem 2.5rem; background: var(--accent); color: var(--white); border-radius: 50px; font-weight: 600; font-size: 1rem; letter-spacing: 0.02em; transition: background var(--trans), transform var(--trans), box-shadow var(--trans); box-shadow: rgba(201, 164, 98, 0.4) 0px 4px 20px; }
.btn-cta:hover { background: var(--accent-d); transform: translateY(-2px); box-shadow: rgba(201, 164, 98, 0.45) 0px 8px 28px; }
#navbar { position: fixed; top: 0px; left: 0px; right: 0px; z-index: 1000; height: var(--nav-h); background: rgba(26, 26, 26, 0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255, 255, 255, 0.08); transition: background var(--trans); }
.nav-inner { max-width: 1200px; margin: 0px auto; padding: 0px 24px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: baseline; gap: 0.3rem; }
.nav-price { font-family: "Playfair Display", serif; font-size: 1.3rem; font-weight: 500; color: var(--accent); }
.nav-hc { font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a { color: rgba(255, 255, 255, 0.8); padding: 0.45rem 0.8rem; border-radius: 6px; font-size: 0.88rem; font-weight: 400; transition: color var(--trans), background var(--trans); }
.nav-links a:hover { color: var(--white); background: rgba(255, 255, 255, 0.08); }
.nav-links a.nav-cta { background: var(--accent); color: var(--white); padding: 0.5rem 1.2rem; border-radius: 50px; font-weight: 600; font-size: 0.85rem; }
.nav-links a.nav-cta:hover { background: var(--accent-d); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform var(--trans), opacity var(--trans); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
#hero { position: relative; height: 100svh; min-height: 600px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-slides { position: absolute; inset: 0px; }
.hero-slide { position: absolute; inset: 0px; background-size: cover; background-position: center center; opacity: 0; transition: opacity 1s; }
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0px; background: linear-gradient(rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.55) 60%, rgba(0, 0, 0, 0.7) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; color: var(--white); padding: calc(var(--nav-h) + 1rem) 24px 4rem; max-width: 800px; }
.hero-badge { display: inline-block; background: var(--accent); color: var(--white); padding: 0.4rem 1.2rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1.2rem; }
.hero-content h1 { color: var(--white); text-shadow: rgba(0, 0, 0, 0.3) 0px 2px 12px; }
.hero-location { font-size: 0.95rem; color: rgba(255, 255, 255, 0.75); margin-top: 0.6rem; }
.hero-location i { margin-right: 0.3rem; color: var(--accent); }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 0px; margin-top: 2rem; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 12px; padding: 1rem 1.5rem; flex-wrap: wrap; }
.hs { text-align: center; padding: 0.4rem 1.2rem; }
.hs strong { display: block; font-size: 1.1rem; font-family: "Playfair Display", serif; color: var(--white); }
.hs span { font-size: 0.75rem; color: rgba(255, 255, 255, 0.6); }
.hs-sep { width: 1px; height: 32px; background: rgba(255, 255, 255, 0.2); }
.hero-price { margin-top: 1.5rem; }
.price-main { font-family: "Playfair Display", serif; font-size: 2.8rem; font-weight: 500; color: var(--accent); }
.price-sub { display: block; font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); margin-top: 0.2rem; }
.hero-dots { position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 8px; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.4); transition: background var(--trans), transform var(--trans); border: none; padding: 0; cursor: pointer; }
.hero-dot.active { background: var(--white); transform: scale(1.2); }
.hero-scroll { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 3; color: rgba(255, 255, 255, 0.6); font-size: 1.3rem; animation: 2s ease 0s infinite normal none running bounce; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0px); }
  50% { transform: translateX(-50%) translateY(6px); }
}
#quick-facts { background: var(--dark); padding: 48px 0px; }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0px; }
.fact { display: flex; align-items: center; gap: 14px; padding: 20px 24px; border-right: 1px solid rgba(255, 255, 255, 0.08); transition: background var(--trans); }
.fact:last-child { border-right: none; }
.fact:nth-child(4) { border-right: none; }
.fact:nth-child(5) { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.fact:nth-child(6) { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.fact:nth-child(7) { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.fact:nth-child(8) { border-top: 1px solid rgba(255, 255, 255, 0.08); border-right: none; }
.fact:hover { background: rgba(255, 255, 255, 0.04); }
.fact > i { font-size: 1.4rem; color: var(--accent); flex-shrink: 0; width: 24px; text-align: center; }
.fact strong { display: block; color: var(--white); font-size: 0.95rem; font-weight: 600; }
.fact span { display: block; color: rgba(255, 255, 255, 0.5); font-size: 0.78rem; margin-top: 0.15rem; }
#description { background: var(--white); }
.desc-grid { display: grid; grid-template-columns: 1fr 360px; gap: 3.5rem; align-items: start; }
.desc-text p { margin-bottom: 1rem; }
.desc-text h3 { font-size: 1.05rem; font-weight: 600; margin: 2rem 0px 0.6rem; font-family: Inter, sans-serif; }
.info-card { background: var(--cream); border-radius: 14px; padding: 1.75rem; border: 1px solid var(--border); }
.info-card h4 { font-size: 1rem; font-family: Inter, sans-serif; font-weight: 700; margin-bottom: 1rem; color: var(--charcoal); }
.info-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.info-table tr { border-bottom: 1px solid var(--border); }
.info-table tr:last-child { border-bottom: none; }
.info-table td { padding: 0.6rem 0.25rem; color: var(--mid); }
.info-table td:first-child { color: var(--light); width: 50%; }
.info-table strong { color: var(--dark); }
.nota-bene { display: flex; gap: 0.75rem; align-items: flex-start; background: rgba(201, 164, 98, 0.08); border: 1px solid rgba(201, 164, 98, 0.25); border-radius: 10px; padding: 1rem; margin-top: 1rem; font-size: 0.83rem; }
.nota-bene i { color: var(--accent); flex-shrink: 0; margin-top: 0.1rem; }
.nota-bene p { color: var(--mid); margin: 0px; line-height: 1.5; }
#plan { background: var(--cream); }
.plan-tabs { display: flex; gap: 0.5rem; justify-content: center; margin-bottom: 2rem; }
.plan-tab { padding: 0.6rem 1.5rem; border-radius: 50px; border: 1.5px solid var(--border); font-size: 0.88rem; font-weight: 500; color: var(--mid); transition: all var(--trans); }
.plan-tab.active, .plan-tab:hover { border-color: var(--accent); color: var(--accent); background: rgba(201, 164, 98, 0.08); }
.plan-panel { display: none; }
.plan-panel.active { display: block; }
.plan-wrapper { position: relative; text-align: center; }
.plan-img { max-height: 70vh; width: auto; max-width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); margin: 0px auto; cursor: zoom-in; }
.plan-zoom-btn { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1rem; padding: 0.55rem 1.25rem; border: 1.5px solid var(--border); border-radius: 8px; color: var(--mid); font-size: 0.85rem; transition: all var(--trans); }
.plan-zoom-btn:hover { border-color: var(--accent); color: var(--accent); }
.plan-disclaimer { text-align: center; margin-top: 1rem; font-size: 0.82rem; color: var(--light); display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.plan-disclaimer i { color: rgb(229, 160, 0); }
.plan-placeholder { background: var(--white); border: 2px dashed var(--border); border-radius: var(--radius); padding: 3rem 2rem; text-align: center; color: var(--light); }
.plan-placeholder i { font-size: 2.5rem; margin-bottom: 1rem; color: var(--border); }
.plan-placeholder p { margin: 0.3rem 0px; }
.plan-ph-note { font-size: 0.82rem; font-family: monospace; }
#gallery { background: var(--white); }
.gallery-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 2.5rem; }
.gtab { padding: 0.5rem 1.2rem; border-radius: 50px; border: 1.5px solid var(--border); font-size: 0.85rem; font-weight: 500; color: var(--mid); transition: all var(--trans); }
.gtab.active { background: var(--dark); border-color: var(--dark); color: var(--white); }
.gtab:not(.active):hover { border-color: var(--accent); color: var(--accent); background: rgba(201, 164, 98, 0.06); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 10px; aspect-ratio: 4 / 3; cursor: pointer; background: var(--border); }
.gallery-item.portrait { aspect-ratio: 3 / 4; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay { position: absolute; inset: 0px; background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%); opacity: 0; transition: opacity var(--trans); display: flex; align-items: flex-end; padding: 12px; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label { color: var(--white); font-size: 0.78rem; font-weight: 500; background: rgba(0, 0, 0, 0.4); border-radius: 4px; padding: 0.2rem 0.5rem; }
.gallery-item.hidden { display: none; }
.gallery-more { text-align: center; margin-top: 2rem; }
#suite-teaser-section { background: var(--white); padding: 0px 0px 88px; }
.suite-teaser { display: flex; align-items: center; gap: 2.25rem; padding: 2.75rem 3rem; background: linear-gradient(120deg, rgb(26, 26, 26) 0%, rgb(45, 45, 45) 100%); border-radius: 18px; border: 1px solid rgba(201, 164, 98, 0.3); position: relative; overflow: hidden; box-shadow: rgba(26, 26, 26, 0.18) 0px 18px 50px; }
.suite-teaser-eyebrow { display: block; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.72rem; font-weight: 600; color: var(--accent); margin-bottom: 0.5rem; }
.suite-teaser::after { content: "\f084"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; right: -10px; bottom: -20px; font-size: 9rem; color: rgba(201, 164, 98, 0.06); }
.suite-teaser-icon { flex-shrink: 0; width: 64px; height: 64px; border-radius: 50%; background: rgba(201, 164, 98, 0.15); border: 1px solid rgba(201, 164, 98, 0.4); display: flex; align-items: center; justify-content: center; }
.suite-teaser-icon i { font-size: 1.5rem; color: var(--accent); }
.suite-teaser-text { position: relative; z-index: 1; }
.suite-teaser-text h3 { font-family: "Playfair Display", serif; color: var(--white); font-size: 1.4rem; font-weight: 500; margin: 0px 0px 0.5rem; display: block; }
.suite-teaser-text p { color: rgba(255, 255, 255, 0.7); font-size: 0.92rem; margin-bottom: 1rem; max-width: 640px; }
.suite-teaser-btn { display: inline-block; padding: 0.7rem 1.75rem; background: var(--accent); color: var(--white); border-radius: 50px; font-weight: 600; font-size: 0.9rem; transition: background var(--trans), transform var(--trans); }
.suite-teaser-btn:hover { background: var(--accent-d); transform: translateY(-1px); }
.contact-intro { color: var(--mid); font-size: 0.9rem; margin-bottom: 1.25rem; line-height: 1.55; }
#features { background: var(--cream); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feat-card { background: var(--white); border-radius: 14px; padding: 1.5rem; border: 1px solid var(--border); transition: box-shadow var(--trans), transform var(--trans); }
.feat-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.feat-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(201, 164, 98, 0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.feat-icon i { font-size: 1.1rem; color: var(--accent); }
.feat-card h4 { font-family: Inter, sans-serif; font-size: 0.95rem; color: var(--dark); margin-bottom: 0.8rem; }
.feat-card ul { display: flex; flex-direction: column; gap: 0.4rem; }
.feat-card li { font-size: 0.84rem; color: var(--mid); padding-left: 1rem; position: relative; line-height: 1.4; }
.feat-card li::before { content: ""; position: absolute; left: 0px; top: 0.55rem; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }
#contact { background: var(--dark); background-image: url('images/photo-031.jpg?v=15'); background-size: cover; background-position: center; position: relative; }
#contact::before { content: ""; position: absolute; inset: 0px; background: rgba(0, 0, 0, 0.8); }
#contact .container { position: relative; z-index: 1; }
.contact-inner { display: grid; grid-template-columns: 1fr 400px; gap: 4rem; align-items: center; }
.contact-left h2 { color: var(--white); margin-bottom: 1rem; }
.contact-left p { color: rgba(255, 255, 255, 0.7); font-size: 1.05rem; }
.contact-left p strong { color: var(--accent); }
.contact-price-box { margin-top: 2rem; }
.cpb-price { font-family: "Playfair Display", serif; font-size: 3rem; color: var(--accent); line-height: 1; }
.cpb-detail { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; margin-top: 0.3rem; }
.cpb-detail small { display: block; font-size: 0.8rem; color: rgba(255, 255, 255, 0.4); margin-top: 0.2rem; }
.contact-card { background: var(--white); border-radius: 16px; padding: 2rem; }
.contact-card h3 { font-family: "Playfair Display", serif; font-size: 1.3rem; margin-bottom: 1.5rem; color: var(--charcoal); }
.contact-methods { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-btn { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; border-radius: 10px; font-size: 0.92rem; font-weight: 500; transition: all var(--trans); }
.contact-btn.phone { background: var(--cream); color: var(--dark); border: 1px solid var(--border); }
.contact-btn.email { background: var(--accent); color: var(--white); }
.contact-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-l); }
.contact-btn.phone:hover { border-color: var(--accent); }
.contact-btn > i { font-size: 1.1rem; flex-shrink: 0; }
.contact-btn span { display: block; }
.contact-btn small { display: block; font-size: 0.75rem; opacity: 0.7; font-weight: 400; }
.contact-note { text-align: center; margin-top: 1.25rem; font-size: 0.78rem; color: var(--light); }
footer { background: rgb(17, 17, 17); padding: 32px 0px; text-align: center; }
.footer-title { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; margin-bottom: 0.4rem; }
.footer-legal { color: rgba(255, 255, 255, 0.3); font-size: 0.75rem; line-height: 1.6; }
.lightbox { position: fixed; inset: 0px; z-index: 9999; display: flex; align-items: center; justify-content: center; visibility: hidden; opacity: 0; transition: opacity 0.3s, visibility 0.3s; }
.lightbox.open { visibility: visible; opacity: 1; }
.lb-overlay { position: absolute; inset: 0px; background: rgba(0, 0, 0, 0.92); cursor: pointer; }
.lb-content { position: relative; z-index: 1; max-width: 92vw; max-height: 90vh; text-align: center; }
.lb-content img { max-width: 92vw; max-height: 80vh; border-radius: 8px; object-fit: contain; box-shadow: rgba(0, 0, 0, 0.5) 0px 20px 60px; }
.lb-close { position: fixed; top: 20px; right: 24px; z-index: 2; color: var(--white); font-size: 1.6rem; padding: 8px; background: rgba(255, 255, 255, 0.1); border-radius: 50%; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; transition: background var(--trans); }
.lb-close:hover { background: rgba(255, 255, 255, 0.2); }
.lb-prev, .lb-next { position: fixed; top: 50%; transform: translateY(-50%); z-index: 2; color: var(--white); font-size: 1.2rem; padding: 12px 16px; background: rgba(255, 255, 255, 0.1); border-radius: 8px; transition: background var(--trans); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255, 255, 255, 0.2); }
.lb-caption { color: rgba(255, 255, 255, 0.8); font-size: 0.85rem; margin-top: 0.75rem; }
.lb-counter { color: rgba(255, 255, 255, 0.4); font-size: 0.75rem; margin-top: 0.2rem; }
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(2) { border-right: none; }
  .fact:nth-child(3) { border-top: 1px solid rgba(255, 255, 255, 0.08); }
  .fact:nth-child(4) { border-top: 1px solid rgba(255, 255, 255, 0.08); }
  .fact:nth-child(4) { border-right: none; }
  .fact:nth-child(5) { border-top: 1px solid rgba(255, 255, 255, 0.08); }
  .fact:nth-child(6) { border-right: none; }
  .fact:nth-child(7) { border-top: 1px solid rgba(255, 255, 255, 0.08); }
  .desc-grid { grid-template-columns: 1fr; }
  .desc-sidebar { max-width: 480px; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  :root { --nav-h: 56px; }
  section { padding: 56px 0px; }
  h2 { font-size: 1.7rem; }
  .nav-toggle { display: flex; }
  .nav-links { position: fixed; top: var(--nav-h); left: 0px; right: 0px; background: rgba(26, 26, 26, 0.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); flex-direction: column; gap: 0px; padding: 1rem; transform: translateY(-110%); transition: transform 0.3s, visibility 0.3s; border-bottom: 1px solid rgba(255, 255, 255, 0.08); visibility: hidden; pointer-events: none; max-height: calc(100svh - var(--nav-h)); overflow-y: auto; }
  .nav-links.open { transform: translateY(0px); visibility: visible; pointer-events: auto; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.9rem 1rem; font-size: 0.95rem; border-radius: 8px; }
  .nav-links a.nav-cta { margin-top: 0.5rem; text-align: center; border-radius: 8px; }
  .hero-stats { gap: 0px; padding: 0.8rem 1rem; }
  .hs { padding: 0.4rem 0.6rem; }
  .hs strong { font-size: 0.95rem; }
  .hs-sep { height: 24px; }
  .price-main { font-size: 2.2rem; }
  .hero-dots { bottom: 60px; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .fact { padding: 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-tabs { gap: 0.4rem; }
  .gtab { padding: 0.4rem 0.9rem; font-size: 0.8rem; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .feat-card { padding: 1.2rem; }
  .contact-inner { grid-template-columns: 1fr; }
  .cpb-price { font-size: 2.4rem; }
  #suite-teaser-section { padding-bottom: 56px; }
  .suite-teaser { flex-direction: column; text-align: center; gap: 1.25rem; padding: 2rem 1.5rem; }
  .suite-teaser-text p { margin-left: auto; margin-right: auto; }
  .suite-teaser-text h3 { font-size: 1.25rem; }
  .lb-prev { left: 8px; padding: 10px 12px; }
  .lb-next { right: 8px; padding: 10px 12px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hs-sep { display: none; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; background: transparent; border: none; padding: 0px; margin-top: 1.5rem; }
  .hs { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 8px; }
}

/* ──────────────────────────────────────────────────────────────
   SECTIONS MASQUÉES
   Pour réafficher une section : retirer la classe « section-masquee »
   sur la balise <section> correspondante dans index.html.
   Rien d'autre à modifier.
   ────────────────────────────────────────────────────────────── */
.section-masquee { display: none !important; }
