/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; background: #080604; font-size: 16px; }
ul { list-style: none; }
a { text-decoration: none; }
button { cursor: pointer; border: none; outline: none; }
input, select, textarea { outline: none; font-family: inherit; }
textarea { resize: vertical; }

:root {
  --serif: 'Cormorant Garamond', Georgia, serif;
  --display: 'Playfair Display', Georgia, serif;
  --sans: 'Jost', system-ui, sans-serif;
  --dm: 'DM Sans', system-ui, sans-serif;
  --lora: 'Lora', Georgia, serif;
}

/* ============================================================
   SIDE NAVIGATION
============================================================ */
.side-nav {
  position: fixed; right: 20px; top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex; flex-direction: column; gap: 14px;
}
.sn-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer; transition: all 0.3s; position: relative;
}
.sn-dot::before {
  content: attr(data-label);
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.75); color: #fff;
  padding: 4px 10px; border-radius: 4px;
  font-size: 11px; font-family: var(--sans); white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.2s; letter-spacing: 0.5px;
}
.sn-dot:hover::before { opacity: 1; }
.sn-dot.active { background: rgba(255,255,255,0.9); transform: scale(1.6); }
.sn-dot:hover:not(.active) { background: rgba(255,255,255,0.55); }

/* ============================================================
   DEMO BADGE
============================================================ */
.demo-badge {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(0,0,0,0.55); color: rgba(255,255,255,0.6);
  padding: 5px 14px; border-radius: 20px;
  font-size: 10px; font-family: var(--sans); letter-spacing: 1.5px;
  text-transform: uppercase; backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  z-index: 500; pointer-events: none;
}

/* ============================================================
   SECTION SEPARATOR
============================================================ */
.sep {
  background: #060504; color: rgba(255,255,255,0.35);
  text-align: center; padding: 22px 20px;
  font-family: var(--sans); font-size: 12px;
  letter-spacing: 3px; text-transform: uppercase;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ============================================================
   SHARED UTILITIES
============================================================ */
.site-section { position: relative; }
.eyebrow { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 16px; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.hidden { display: none !important; }

/* ============================================================
   MODAL BASE
============================================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(8px);
  z-index: 8000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease; padding: 20px;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
.modal-box {
  background: #fff; border-radius: 16px; padding: 40px;
  max-width: 540px; width: 100%; position: relative;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 90vh; overflow-y: auto;
}
.modal-box.dark-modal { background: #1a1610; color: #f5e6d3; border: 1px solid rgba(193,127,59,0.25); }
.modal-close {
  position: absolute; top: 16px; right: 18px;
  background: none; font-size: 18px; cursor: pointer; color: #888;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background 0.2s, color 0.2s;
}
.modal-close:hover { background: rgba(0,0,0,0.08); color: #222; }
.dark-modal .modal-close { color: rgba(245,230,211,0.5); }
.dark-modal .modal-close:hover { background: rgba(255,255,255,0.08); color: #f5e6d3; }

.modal-eyebrow { font-family: var(--sans); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: #c17f3b; margin-bottom: 8px; }
.modal-eyebrow.bk { color: #b5451b; }
.modal-eyebrow.ht { color: #2d6a4f; }
.modal-eyebrow.ft { color: #d4ff00; }

.modal-title { font-family: var(--display); font-size: 28px; font-weight: 400; margin-bottom: 28px; }
.dark-modal .modal-title { color: #f5e6d3; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-family: var(--sans); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: #999; }
.dark-modal .form-group label { color: rgba(245,230,211,0.45); }

.form-group input, .form-group select, .form-group textarea {
  padding: 11px 14px; border: 1.5px solid #e5e5e5;
  border-radius: 8px; font-size: 14px; font-family: var(--sans);
  background: #fff; color: #1a1a1a; transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #c17f3b; }
.dark-modal .form-group input, .dark-modal .form-group select, .dark-modal .form-group textarea {
  background: rgba(245,230,211,0.04); border-color: rgba(193,127,59,0.25); color: #f5e6d3;
}
.dark-modal .form-group input:focus, .dark-modal .form-group select:focus, .dark-modal .form-group textarea:focus { border-color: #c17f3b; }
.dark-modal .form-group select option { background: #1a1610; }
.form-group textarea { min-height: 80px; }

.btn-form-submit {
  width: 100%; padding: 15px;
  background: #c17f3b; color: #fff; border: none; border-radius: 8px;
  font-family: var(--sans); font-size: 13px; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 600; margin-top: 6px; transition: all 0.3s;
}
.btn-form-submit:hover { background: #a8692e; transform: translateY(-1px); }
.btn-form-submit.bk { background: #b5451b; }
.btn-form-submit.bk:hover { background: #963815; }
.btn-form-submit.ht { background: #2d6a4f; color: #fff; }
.btn-form-submit.ht:hover { background: #1e4d38; }
.btn-form-submit.ft { background: #d4ff00; color: #111; }
.btn-form-submit.ft:hover { background: #bfe600; }

.modal-success { text-align: center; padding: 20px 10px; }
.success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, #c17f3b, #d4935a);
  color: #fff; font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.success-icon.bk { background: linear-gradient(135deg, #b5451b, #d4622e); }
.success-icon.ht { background: linear-gradient(135deg, #2d6a4f, #40916c); }
.success-icon.ft { background: #d4ff00; color: #111; }
.modal-success h3 { font-family: var(--display); font-size: 28px; font-weight: 400; margin-bottom: 12px; }
.modal-success p { font-family: var(--sans); font-size: 14px; color: #666; line-height: 1.7; margin-bottom: 8px; }
.success-detail { font-size: 13px; color: #bbb; }
.dark-modal .modal-success h3 { color: #c17f3b; }
.dark-modal .modal-success p { color: rgba(245,230,211,0.55); }
.modal-sub-text { font-family: var(--sans); font-size: 14px; color: #888; margin-bottom: 24px; margin-top: -18px; }
.modal-fine-print { font-family: var(--sans); font-size: 12px; color: #bbb; text-align: center; margin-top: 10px; }

/* ============================================================
   SECTION 1 — RESTAURANT (inchangé)
============================================================ */
#s-restaurant { background: #0e0c0a; color: #f5e6d3; }

.r-header {
  position: sticky; top: 0; z-index: 400; height: 70px; padding: 0 56px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(14,12,10,0.93); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(193,127,59,0.18);
}
.r-logo { font-family: var(--serif); font-size: 20px; font-weight: 300; letter-spacing: 4px; color: #f5e6d3; text-transform: uppercase; }
.r-logo span { color: #c17f3b; }
.r-nav { display: flex; gap: 32px; }
.r-nav a { font-family: var(--sans); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(245,230,211,0.55); transition: color 0.2s; }
.r-nav a:hover { color: #f5e6d3; }
.btn-r-cta { background: #c17f3b; color: #0e0c0a; padding: 11px 26px; font-family: var(--sans); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; transition: all 0.3s; }
.btn-r-cta:hover { background: #d4935a; }

.r-hero { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; background: #0a0806; overflow: hidden; }
.r-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.r-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(8,6,4,0.32) 0%, rgba(8,6,4,0.50) 45%, rgba(8,6,4,0.90) 100%); z-index: 1; }
.r-hero-inner { position: relative; z-index: 2; max-width: 760px; }
.r-scroll-hint { z-index: 2; }
.r-eyebrow { font-family: var(--sans); font-size: 12px; letter-spacing: 3px; color: rgba(193,127,59,0.8); text-transform: uppercase; display: block; margin-bottom: 24px; }
.r-hero h1 { font-family: var(--display); font-size: clamp(46px, 7.5vw, 96px); font-weight: 400; line-height: 1.08; color: #f5e6d3; text-shadow: 0 4px 48px rgba(0,0,0,0.45); }
.r-hero h1 em { font-style: italic; color: #c17f3b; }
.r-hero-sub { font-family: var(--sans); font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: rgba(245,230,211,0.4); margin-top: 24px; margin-bottom: 44px; }
.r-hero-btns { display: flex; gap: 16px; justify-content: center; }
.btn-r-primary { background: #c17f3b; color: #0e0c0a; padding: 15px 38px; font-family: var(--sans); font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600; transition: all 0.3s; }
.btn-r-primary:hover { background: #d4935a; transform: translateY(-2px); }
.btn-r-primary.lg { padding: 18px 50px; font-size: 12px; }
.btn-r-ghost { background: transparent; color: #f5e6d3; padding: 15px 38px; border: 1px solid rgba(245,230,211,0.35); font-family: var(--sans); font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 500; transition: all 0.3s; }
.btn-r-ghost:hover { border-color: #f5e6d3; }
.r-scroll-hint { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(245,230,211,0.3); font-family: var(--sans); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; }
.scroll-bar { width: 1px; height: 44px; background: linear-gradient(to bottom, transparent, rgba(193,127,59,0.7)); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:0.3;} 50%{opacity:1;} }

.r-about { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; }
.r-about-img { background: linear-gradient(to top, rgba(8,6,4,0.75) 0%, rgba(8,6,4,0.1) 55%), url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=900&h=900&fit=crop&q=85') center/cover no-repeat; display: flex; align-items: flex-end; padding: 48px; }
.r-about-quote { font-family: var(--serif); font-style: italic; font-size: 22px; line-height: 1.6; color: rgba(245,230,211,0.92); text-shadow: 0 2px 24px rgba(0,0,0,0.6); }
.r-about-text { padding: 80px 64px; background: #0e0c0a; display: flex; flex-direction: column; justify-content: center; }
.r-about-text .eyebrow { color: #c17f3b; }
.r-about-text h2 { font-family: var(--display); font-size: 40px; font-weight: 400; line-height: 1.2; color: #f5e6d3; margin-bottom: 24px; }
.r-about-text h2 em { font-style: italic; color: #c17f3b; }
.r-about-text p { font-family: var(--sans); font-size: 15px; line-height: 1.8; color: rgba(245,230,211,0.55); margin-bottom: 14px; }
.r-stats { display: flex; gap: 36px; margin-top: 36px; padding-top: 32px; border-top: 1px solid rgba(193,127,59,0.18); }
.stat-n { font-family: var(--display); font-size: 38px; font-weight: 700; color: #c17f3b; display: block; }
.stat-l { font-family: var(--sans); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(245,230,211,0.35); }

.r-menu-section { padding: 100px 80px; background: #0a0806; }
.r-menu-section .eyebrow { color: #c17f3b; text-align: center; }
.r-menu-section h2 { font-family: var(--display); font-size: 48px; font-weight: 400; color: #f5e6d3; text-align: center; }
.r-menu-tabs { display: flex; justify-content: center; margin-bottom: 48px; }
.mtab { padding: 12px 30px; background: transparent; border: 1px solid rgba(193,127,59,0.28); color: rgba(245,230,211,0.45); font-family: var(--sans); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; transition: all 0.3s; margin: 0 -0.5px; }
.mtab:first-child { border-radius: 4px 0 0 4px; }
.mtab:last-child { border-radius: 0 4px 4px 0; }
.mtab.active, .mtab:hover { background: #c17f3b; color: #0e0c0a; border-color: #c17f3b; font-weight: 600; }
.r-menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.r-card { background: #141008; border: 1px solid rgba(193,127,59,0.08); transition: border-color 0.3s; }
.r-card:hover { border-color: rgba(193,127,59,0.3); background: #1a1410; }
.r-card-img { height: 170px; overflow: hidden; }
.r-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.r-img-1,.r-img-2,.r-img-3,.r-img-4,.r-img-5,.r-img-6,.r-img-7,.r-img-8,.r-img-9 { background: #1a1208; }
.r-card-body { padding: 24px 28px 32px; }
.r-card-body h3 { font-family: var(--serif); font-size: 20px; font-weight: 400; color: #f5e6d3; margin-bottom: 8px; }
.r-card-body p { font-family: var(--sans); font-size: 13px; color: rgba(245,230,211,0.45); line-height: 1.6; margin-bottom: 14px; }
.price { font-family: var(--display); font-size: 22px; color: #c17f3b; }

.r-gallery-strip { display: grid; grid-template-columns: 2fr 1fr 1fr; height: 360px; gap: 3px; background: #060402; }
.r-gal-item { overflow: hidden; position: relative; }
.r-gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.r-gal-item::after { content: ''; position: absolute; inset: 0; background: rgba(8,6,4,0.28); transition: opacity 0.4s; }
.r-gal-item:hover::after { opacity: 0; }
.r-gal-item:hover img { transform: scale(1.05); }

.r-cta-banner { padding: 110px 80px; text-align: center; background: linear-gradient(180deg, rgba(8,6,4,0.82) 0%, rgba(20,12,6,0.88) 50%, rgba(8,6,4,0.88) 100%), url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&h=700&fit=crop&q=80') center/cover no-repeat; border-top: 1px solid rgba(193,127,59,0.12); border-bottom: 1px solid rgba(193,127,59,0.12); }
.r-cta-banner h2 { font-family: var(--display); font-size: 50px; font-weight: 400; font-style: italic; color: #f5e6d3; margin-bottom: 14px; }
.r-cta-banner h2 em { color: #c17f3b; }
.r-cta-banner p { font-family: var(--sans); font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(245,230,211,0.4); margin-bottom: 40px; }

.r-footer { background: #060402; padding: 64px 80px 48px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; border-top: 1px solid rgba(193,127,59,0.12); }
.r-footer-logo { font-family: var(--serif); font-size: 22px; font-weight: 300; letter-spacing: 3px; text-transform: uppercase; color: #f5e6d3; margin-bottom: 16px; }
.r-footer p { font-family: var(--sans); font-size: 13px; line-height: 1.8; color: rgba(245,230,211,0.35); }
.r-footer h4 { font-family: var(--sans); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: #c17f3b; margin-bottom: 18px; }
.r-footer li { font-family: var(--sans); font-size: 13px; color: rgba(245,230,211,0.35); margin-bottom: 9px; }

/* ============================================================
   SECTION 2 — SALON (thème clair rose-poudré)
============================================================ */
#s-salon { background: #fdfaf7; color: #1c1410; }

.sl-header {
  position: sticky; top: 0; z-index: 400; height: 70px; padding: 0 56px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(253,250,247,0.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(180,120,100,0.12);
}
.sl-logo { font-family: var(--lora); font-size: 22px; font-weight: 600; letter-spacing: 1px; color: #1c1410; }
.sl-logo span { color: #c97b5f; font-style: italic; }
.sl-nav { display: flex; gap: 32px; }
.sl-nav a { font-family: var(--sans); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(28,20,16,0.45); transition: color 0.2s; }
.sl-nav a:hover { color: #1c1410; }
.btn-sl-cta { background: #1c1410; color: #fdfaf7; padding: 11px 28px; font-family: var(--sans); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; border-radius: 2px; transition: all 0.3s; }
.btn-sl-cta:hover { background: #c97b5f; }

/* Salon Hero — split */
.sl-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.sl-hero-img { position: relative; overflow: hidden; }
.sl-hero-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.sl-hero-img-tag {
  position: absolute; bottom: 32px; left: 32px;
  background: rgba(253,250,247,0.95); color: #1c1410;
  padding: 10px 18px; font-family: var(--sans); font-size: 12px;
  letter-spacing: 1px; border-left: 3px solid #c97b5f;
}
.sl-hero-content {
  background: #fdfaf7; display: flex; flex-direction: column;
  justify-content: center; padding: 80px 72px;
}
.sl-eyebrow { font-family: var(--sans); font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: #c97b5f; display: block; margin-bottom: 24px; }
.sl-hero-content h1 { font-family: var(--lora); font-size: clamp(44px, 5.5vw, 72px); font-weight: 600; line-height: 1.1; color: #1c1410; margin-bottom: 20px; }
.sl-hero-content h1 em { font-style: italic; color: #c97b5f; }
.sl-hero-content p { font-family: var(--sans); font-size: 15px; line-height: 1.7; color: rgba(28,20,16,0.55); max-width: 380px; margin-bottom: 32px; }
.sl-hero-stats { display: flex; align-items: center; gap: 24px; margin-bottom: 40px; }
.sl-stat strong { display: block; font-family: var(--lora); font-size: 24px; color: #1c1410; }
.sl-stat span { font-family: var(--sans); font-size: 12px; color: rgba(28,20,16,0.45); }
.sl-stat-sep { width: 1px; height: 40px; background: rgba(28,20,16,0.15); }
.btn-sl-primary { background: #c97b5f; color: #fff; padding: 15px 40px; font-family: var(--sans); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; border-radius: 2px; transition: all 0.3s; align-self: flex-start; }
.btn-sl-primary:hover { background: #b56a4e; transform: translateY(-2px); }

/* Salon Services */
.sl-services { padding: 100px 80px; background: #f5ede8; }
.sl-services-intro { text-align: center; margin-bottom: 60px; }
.sl-eyebrow-sm { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: #c97b5f; margin-bottom: 12px; }
.sl-services-intro h2 { font-family: var(--lora); font-size: 44px; font-weight: 600; color: #1c1410; margin-bottom: 12px; }
.sl-services-intro p { font-family: var(--sans); font-size: 15px; color: rgba(28,20,16,0.5); }
.sl-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.sl-service-card { background: #fff; border-radius: 4px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.sl-service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(28,20,16,0.1); }
.sl-service-img { height: 180px; overflow: hidden; }
.sl-service-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.sl-service-card:hover .sl-service-img img { transform: scale(1.05); }
.sl-service-body { padding: 24px; }
.sl-service-body h3 { font-family: var(--lora); font-size: 18px; font-weight: 600; color: #1c1410; margin-bottom: 8px; }
.sl-service-body p { font-family: var(--sans); font-size: 13px; line-height: 1.6; color: rgba(28,20,16,0.5); margin-bottom: 16px; }
.sl-service-footer { display: flex; justify-content: space-between; align-items: center; }
.sl-price { font-family: var(--sans); font-size: 13px; font-weight: 600; color: #c97b5f; }
.sl-arrow { font-size: 16px; color: #c97b5f; }

/* Salon Gallery */
.sl-gallery { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 340px; gap: 4px; background: #1c1410; }
.sl-gal-tall { grid-row: span 1; }
.sl-gal-col { display: grid; grid-template-rows: 1fr 1fr; gap: 4px; }
.sl-gal-item { position: relative; overflow: hidden; }
.sl-gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s; }
.sl-gal-item:hover img { transform: scale(1.06); }
.sl-gal-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(28,20,16,0.75), transparent); color: #fff; padding: 20px 16px 12px; font-family: var(--sans); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0; transition: opacity 0.3s; }
.sl-gal-item:hover .sl-gal-label { opacity: 1; }

/* Salon CTA */
.sl-cta { position: relative; height: 380px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.sl-cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sl-cta::after { content: ''; position: absolute; inset: 0; background: rgba(28,20,16,0.6); }
.sl-cta-inner { position: relative; z-index: 1; text-align: center; }
.sl-cta-inner h2 { font-family: var(--lora); font-size: 44px; font-weight: 600; color: #fff; margin-bottom: 12px; }
.sl-cta-inner h2 em { font-style: italic; color: #e8a98e; }
.sl-cta-inner p { font-family: var(--sans); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 32px; }
.btn-sl-dark { background: #fff; color: #1c1410; padding: 15px 40px; font-family: var(--sans); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; border-radius: 2px; transition: all 0.3s; }
.btn-sl-dark:hover { background: #c97b5f; color: #fff; }

.sl-footer { background: #1c1410; color: #fdfaf7; padding: 48px 80px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.sl-footer-logo { font-family: var(--lora); font-size: 22px; font-weight: 600; color: #fdfaf7; }
.sl-footer h4 { font-family: var(--sans); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: #c97b5f; margin-bottom: 12px; }
.sl-footer p { font-family: var(--sans); font-size: 13px; line-height: 1.8; color: rgba(253,250,247,0.4); }

/* RDV Modal Steps */
.rdv-step-bar { display: flex; align-items: center; margin-bottom: 32px; }
.rdv-step-dot { display: flex; flex-direction: column; align-items: center; gap: 4px; font-family: var(--sans); font-size: 11px; color: #ccc; transition: color 0.3s; }
.rdv-step-dot span { width: 28px; height: 28px; border-radius: 50%; background: #e5e5e5; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: #aaa; transition: all 0.3s; }
.rdv-step-dot.active span { background: #c97b5f; color: #fff; }
.rdv-step-dot.active { color: #c97b5f; }
.rdv-step-dot.done span { background: #4ade80; color: #fff; }
.rdv-step-line { flex: 1; height: 1px; background: #e5e5e5; margin: 0 10px; margin-bottom: 18px; }
.rdv-services { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.rdv-service-opt { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border: 1.5px solid #e5e5e5; border-radius: 8px; cursor: pointer; transition: border-color 0.2s; font-family: var(--sans); font-size: 14px; color: #333; }
.rdv-service-opt:hover { border-color: #c97b5f; background: rgba(201,123,95,0.04); }
.rdv-service-opt input { accent-color: #c97b5f; }
.rdv-service-opt span em { float: right; color: #c97b5f; font-style: normal; font-weight: 600; }
.rdv-slots { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin: 16px 0 24px; }
.slot-btn { padding: 10px; border: 1.5px solid #e5e5e5; border-radius: 8px; font-family: var(--sans); font-size: 13px; background: #fff; color: #333; transition: all 0.2s; }
.slot-btn:hover:not(.disabled) { border-color: #c97b5f; background: rgba(201,123,95,0.08); }
.slot-btn.active { background: #c97b5f; color: #fff; border-color: #c97b5f; }
.slot-btn.disabled { opacity: 0.35; background: #f5f5f5; cursor: not-allowed; }
.rdv-btns-row { display: flex; gap: 12px; margin-top: 8px; }
.btn-modal-next { flex: 1; padding: 13px; background: #c97b5f; color: #fff; border-radius: 8px; font-family: var(--sans); font-size: 13px; letter-spacing: 1px; font-weight: 600; transition: background 0.2s; }
.btn-modal-next:hover { background: #b56a4e; }
.btn-modal-back { padding: 13px 20px; background: transparent; color: #999; border: 1.5px solid #e5e5e5; border-radius: 8px; font-family: var(--sans); font-size: 13px; transition: all 0.2s; }
.btn-modal-back:hover { border-color: #ccc; color: #555; }

/* ============================================================
   SECTION 3 — BOUTIQUE (terracotta · crème · éditorial)
============================================================ */
#s-boutique { background: #f2ede6; color: #1a1614; }

.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 5000; display: none; }
.cart-overlay.open { display: block; }
.cart-sidebar { position: fixed; top: 0; right: -440px; width: 420px; height: 100vh; background: #fff; z-index: 6000; box-shadow: -8px 0 40px rgba(0,0,0,0.12); transition: right 0.4s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; }
.cart-sidebar.open { right: 0; }
.cart-header { padding: 24px 28px; border-bottom: 1px solid #f0f0f0; display: flex; justify-content: space-between; align-items: center; }
.cart-header h3 { font-family: var(--display); font-size: 22px; font-weight: 400; }
.cart-close { background: none; font-size: 20px; color: #888; transition: color 0.2s; }
.cart-close:hover { color: #222; }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 28px; }
.cart-empty { font-family: var(--sans); font-size: 14px; color: #bbb; text-align: center; padding: 40px 0; }
.cart-item { display: flex; gap: 16px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #f5f5f5; }
.cart-item-img { width: 64px; height: 64px; border-radius: 8px; overflow: hidden; background: #f5f5f5; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-family: var(--sans); font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.cart-item-info p { font-family: var(--sans); font-size: 13px; color: #aaa; }
.cart-item-price { font-family: var(--display); font-size: 18px; color: #b5451b; align-self: center; }
.cart-footer { padding: 20px 28px; border-top: 1px solid #f0f0f0; }
.cart-total { font-family: var(--display); font-size: 20px; font-weight: 400; margin-bottom: 16px; color: #1a1a1a; }
.cart-total span { color: #b5451b; }

.bt-header { position: sticky; top: 0; z-index: 400; height: 70px; padding: 0 56px; display: flex; align-items: center; justify-content: space-between; background: rgba(242,237,230,0.97); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(26,22,20,0.08); }
.bt-logo { font-family: var(--lora); font-size: 22px; font-weight: 600; letter-spacing: 1px; color: #1a1614; }
.bt-logo span { color: #b5451b; font-style: italic; }
.bt-nav { display: flex; gap: 28px; }
.bt-nav a { font-family: var(--sans); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(26,22,20,0.45); transition: color 0.2s; }
.bt-nav a:hover { color: #1a1614; }
.bt-header-right { display: flex; align-items: center; gap: 20px; }
.bt-search { font-size: 18px; cursor: pointer; color: #666; }
.bt-cart-btn { background: #1a1614; color: #fff; padding: 8px 18px; font-family: var(--sans); font-size: 13px; border-radius: 24px; font-weight: 500; transition: background 0.2s; }
.bt-cart-btn:hover { background: #b5451b; }
.cart-count { display: inline-flex; width: 20px; height: 20px; background: #b5451b; color: #fff; border-radius: 50%; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; margin-left: 4px; }

/* Boutique Hero split */
.bt-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.bt-hero-left { background: #f2ede6; display: flex; flex-direction: column; justify-content: center; padding: 80px 72px; }
.bt-eyebrow { font-family: var(--sans); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: #b5451b; display: block; margin-bottom: 20px; }
.bt-hero-left h1 { font-family: var(--lora); font-size: clamp(44px, 5vw, 68px); font-weight: 600; line-height: 1.1; color: #1a1614; margin-bottom: 20px; }
.bt-hero-left p { font-family: var(--sans); font-size: 15px; line-height: 1.7; color: rgba(26,22,20,0.5); max-width: 360px; margin-bottom: 36px; }
.bt-hero-btns { display: flex; gap: 14px; }
.btn-bt-primary { background: #1a1614; color: #fff; padding: 14px 36px; font-family: var(--sans); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; border-radius: 2px; transition: all 0.3s; }
.btn-bt-primary:hover { background: #b5451b; }
.btn-bt-primary.full { width: 100%; padding: 14px; margin-top: 8px; }
.btn-bt-ghost { background: transparent; color: #1a1614; padding: 14px 36px; border: 1.5px solid rgba(26,22,20,0.25); font-family: var(--sans); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; border-radius: 2px; transition: all 0.3s; }
.btn-bt-ghost:hover { border-color: #1a1614; }
.bt-hero-right { position: relative; overflow: hidden; }
.bt-hero-right img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.bt-hero-floating-tag { position: absolute; bottom: 40px; left: 32px; background: rgba(242,237,230,0.96); padding: 14px 20px; border-left: 3px solid #b5451b; }
.bt-hero-floating-tag span { display: block; font-family: var(--sans); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: #b5451b; margin-bottom: 4px; }
.bt-hero-floating-tag strong { font-family: var(--lora); font-size: 18px; color: #1a1614; }

/* Boutique Products */
.bt-products { padding: 90px 80px; background: #f2ede6; }
.bt-products-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.bt-eyebrow-dark { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: #b5451b; margin-bottom: 8px; }
.bt-products-header h2 { font-family: var(--lora); font-size: 44px; font-weight: 600; color: #1a1614; }
.btn-bt-outline { background: transparent; border: 1.5px solid #1a1614; color: #1a1614; padding: 10px 24px; font-family: var(--sans); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; transition: all 0.3s; }
.btn-bt-outline:hover { background: #1a1614; color: #fff; }
.bt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.bt-product { cursor: pointer; }
.bt-product:hover .bt-prod-overlay { opacity: 1; }
.bt-prod-img { height: 280px; border-radius: 4px; position: relative; overflow: hidden; margin-bottom: 16px; background: #e8e0d4; }
.bt-prod-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.bt-product:hover .bt-prod-img img { transform: scale(1.04); }
.bt-prod-overlay { position: absolute; inset: 0; background: rgba(26,22,20,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.bt-prod-overlay button { background: #f2ede6; color: #1a1614; padding: 12px 28px; font-family: var(--sans); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; border-radius: 2px; }
.bt-prod-info h3 { font-family: var(--sans); font-size: 15px; font-weight: 600; color: #1a1614; margin-bottom: 4px; }
.bt-prod-info p { font-family: var(--sans); font-size: 13px; color: #999; margin-bottom: 6px; }
.bt-price { font-family: var(--lora); font-size: 20px; color: #1a1614; }
.bt-prod-img.new-tag::before { content: 'Nouveau'; position: absolute; top: 12px; left: 12px; background: #1a1614; color: #fff; font-family: var(--sans); font-size: 10px; letter-spacing: 1.5px; padding: 4px 10px; z-index: 1; text-transform: uppercase; }
.bt-prod-img.bestseller-tag::before { content: 'Best-seller'; position: absolute; top: 12px; left: 12px; background: #b5451b; color: #fff; font-family: var(--sans); font-size: 10px; letter-spacing: 1.5px; padding: 4px 10px; z-index: 1; text-transform: uppercase; }

/* Boutique lifestyle banner */
.bt-lifestyle { position: relative; height: 400px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.bt-lifestyle img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bt-lifestyle::after { content: ''; position: absolute; inset: 0; background: rgba(26,22,20,0.52); }
.bt-lifestyle-inner { position: relative; z-index: 1; text-align: center; }
.bt-lifestyle-inner h2 { font-family: var(--lora); font-size: 52px; font-weight: 600; color: #fff; margin-bottom: 28px; line-height: 1.15; }
.bt-lifestyle-inner h2 em { font-style: italic; color: #e8a98e; }
.btn-bt-white { background: #fff; color: #1a1614; padding: 15px 42px; font-family: var(--sans); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; transition: all 0.3s; }
.btn-bt-white:hover { background: #b5451b; color: #fff; }

/* Product Modal */
.product-modal { max-width: 680px; display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0; overflow: hidden; }
.pm-img { overflow: hidden; background: #f0ece4; }
.pm-img img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 360px; }
.pm-info { padding: 36px 32px; display: flex; flex-direction: column; }
.pm-name { font-family: var(--display); font-size: 24px; font-weight: 400; color: #1a1a1a; margin-bottom: 12px; }
.pm-desc { font-family: var(--sans); font-size: 13px; line-height: 1.7; color: #888; flex: 1; margin-bottom: 16px; }
.pm-price { font-family: var(--display); font-size: 28px; color: #1a1a1a; margin-bottom: 20px; }
.qty-ctrl { display: flex; align-items: center; gap: 16px; margin-top: 6px; }
.qty-ctrl button { width: 32px; height: 32px; border: 1.5px solid #e5e5e5; border-radius: 50%; background: #fff; font-size: 18px; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s; }
.qty-ctrl button:hover { border-color: #b5451b; }
.qty-ctrl span { font-family: var(--display); font-size: 22px; min-width: 24px; text-align: center; }
.pm-shipping { font-family: var(--sans); font-size: 12px; color: #bbb; text-align: center; margin-top: 10px; }

.bt-footer { background: #1a1614; color: #f2ede6; padding: 48px 80px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.bt-footer-logo { font-family: var(--lora); font-size: 22px; font-weight: 600; color: #f2ede6; }
.bt-footer h4 { font-family: var(--sans); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: #b5451b; margin-bottom: 12px; }
.bt-footer p { font-family: var(--sans); font-size: 13px; line-height: 1.8; color: rgba(242,237,230,0.4); }

/* ============================================================
   SECTION 4 — BEAUTÉ / COSMÉTIQUES (blanc pur · nude · soft)
============================================================ */
#s-beaute { background: #fff; color: #1a1a1a; }

.bc-header {
  position: sticky; top: 0; z-index: 400; height: 70px; padding: 0 56px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.bc-logo { font-family: var(--lora); font-size: 22px; font-weight: 400; letter-spacing: 2px; color: #1a1a1a; }
.bc-logo span { color: #c4856a; }
.bc-nav { display: flex; gap: 32px; }
.bc-nav a { font-family: var(--dm); font-size: 13px; color: rgba(26,26,26,0.5); transition: color 0.2s; letter-spacing: 0.3px; }
.bc-nav a:hover { color: #1a1a1a; }
.bc-header-right { display: flex; align-items: center; gap: 16px; }
.bc-cart-btn { background: #1a1a1a; color: #fff; padding: 8px 18px; font-family: var(--dm); font-size: 13px; border-radius: 24px; transition: background 0.2s; }
.bc-cart-btn:hover { background: #c4856a; }

/* Beauté Hero */
.bc-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.bc-hero-left { background: #fff; display: flex; flex-direction: column; justify-content: center; padding: 80px 72px; }
.bc-eyebrow { font-family: var(--dm); font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: #c4856a; display: block; margin-bottom: 24px; }
.bc-hero-left h1 { font-family: var(--lora); font-size: clamp(40px, 5vw, 66px); font-weight: 400; line-height: 1.15; color: #1a1a1a; margin-bottom: 20px; }
.bc-hero-left h1 em { font-style: italic; color: #c4856a; }
.bc-hero-left p { font-family: var(--dm); font-size: 16px; line-height: 1.7; color: rgba(26,26,26,0.5); max-width: 360px; margin-bottom: 36px; }
.bc-hero-btns { display: flex; gap: 14px; margin-bottom: 40px; }
.btn-bc-primary { background: #1a1a1a; color: #fff; padding: 15px 40px; font-family: var(--dm); font-size: 13px; letter-spacing: 0.5px; font-weight: 700; border-radius: 100px; transition: all 0.3s; }
.btn-bc-primary:hover { background: #c4856a; transform: translateY(-2px); }
.btn-bc-ghost { background: transparent; color: #1a1a1a; padding: 15px 40px; border: 1.5px solid rgba(26,26,26,0.2); font-family: var(--dm); font-size: 13px; font-weight: 500; border-radius: 100px; transition: all 0.3s; }
.btn-bc-ghost:hover { border-color: #1a1a1a; }
.btn-bc-outline { background: transparent; border: 1.5px solid rgba(26,26,26,0.2); color: #1a1a1a; padding: 10px 24px; font-family: var(--dm); font-size: 12px; font-weight: 600; border-radius: 100px; transition: all 0.3s; }
.btn-bc-outline:hover { border-color: #c4856a; color: #c4856a; }
.bc-hero-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.bc-hero-tags span { font-family: var(--dm); font-size: 12px; color: rgba(26,26,26,0.55); padding: 6px 14px; background: #f5f0ec; border-radius: 100px; }
.bc-hero-right { position: relative; overflow: hidden; background: #f5ede8; }
.bc-hero-right img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.bc-float-card { position: absolute; background: rgba(255,255,255,0.95); padding: 14px 20px; border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.1); backdrop-filter: blur(8px); animation: floatCard 4s ease-in-out infinite; }
.bc-float-top { top: 60px; right: 40px; animation-delay: 0s; }
.bc-float-bottom { bottom: 80px; left: 40px; animation-delay: 2s; }
.bc-float-card strong { display: block; font-family: var(--dm); font-size: 14px; font-weight: 700; color: #1a1a1a; margin-bottom: 2px; }
.bc-float-card span { font-family: var(--dm); font-size: 12px; color: rgba(26,26,26,0.5); }
@keyframes floatCard { 0%,100%{transform: translateY(0);} 50%{transform: translateY(-8px);} }

/* Beauté Products */
.bc-products { padding: 90px 80px; background: #faf8f6; }
.bc-products-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.bc-eyebrow-sm { display: block; font-family: var(--dm); font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: #c4856a; margin-bottom: 8px; }
.bc-products-header h2 { font-family: var(--lora); font-size: 44px; font-weight: 400; color: #1a1a1a; }
.bc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bc-product { cursor: pointer; }
.bc-prod-img { height: 280px; border-radius: 16px; position: relative; overflow: hidden; margin-bottom: 16px; background: #f0ece8; }
.bc-prod-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.bc-product:hover .bc-prod-img img { transform: scale(1.05); }
.bc-prod-overlay { position: absolute; inset: 0; background: rgba(26,26,26,0.35); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; border-radius: 16px; }
.bc-product:hover .bc-prod-overlay { opacity: 1; }
.bc-prod-overlay button { background: #fff; color: #1a1a1a; padding: 10px 24px; font-family: var(--dm); font-size: 12px; font-weight: 700; border-radius: 100px; }
.bc-badge { position: absolute; top: 12px; left: 12px; background: #1a1a1a; color: #fff; font-family: var(--dm); font-size: 10px; font-weight: 700; letter-spacing: 1px; padding: 4px 10px; border-radius: 100px; z-index: 1; }
.bc-badge.new { background: #c4856a; }
.bc-badge.spf { background: #4caf8a; }
.bc-prod-info h3 { font-family: var(--dm); font-size: 15px; font-weight: 700; color: #1a1a1a; margin-bottom: 4px; }
.bc-prod-info p { font-family: var(--dm); font-size: 13px; color: #aaa; margin-bottom: 6px; }
.bc-price { font-family: var(--lora); font-size: 20px; color: #1a1a1a; }

/* Animation fade-in pour produits */
.bc-fade {
  opacity: 0;
  transform: translateY(20px);
  animation: bcFadeIn 0.5s ease forwards;
}
@keyframes bcFadeIn { to { opacity: 1; transform: translateY(0); } }

/* Beauté brand story */
.bc-brand { display: grid; grid-template-columns: 1fr 1fr; }
.bc-brand-img { overflow: hidden; height: 560px; }
.bc-brand-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s; }
.bc-brand:hover .bc-brand-img img { transform: scale(1.03); }
.bc-brand-text { background: #1a1a1a; padding: 80px 72px; display: flex; flex-direction: column; justify-content: center; }
.bc-brand-text .bc-eyebrow-sm { color: #c4856a; }
.bc-brand-text h2 { font-family: var(--lora); font-size: 40px; font-weight: 400; color: #fff; line-height: 1.25; margin-bottom: 24px; }
.bc-brand-text h2 em { font-style: italic; color: #c4856a; }
.bc-brand-text p { font-family: var(--dm); font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.5); margin-bottom: 36px; }
.bc-brand-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.bc-pill { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); padding: 8px 16px; font-family: var(--dm); font-size: 13px; border-radius: 100px; }

/* Beauté Newsletter */
.bc-newsletter { background: #f5ede8; padding: 90px 80px; text-align: center; }
.bc-nl-inner { max-width: 560px; margin: 0 auto; }
.bc-newsletter h2 { font-family: var(--lora); font-size: 44px; font-weight: 400; color: #1a1a1a; margin-bottom: 14px; line-height: 1.2; }
.bc-newsletter p { font-family: var(--dm); font-size: 15px; color: rgba(26,26,26,0.5); margin-bottom: 36px; line-height: 1.6; }
.bc-nl-form { display: flex; gap: 0; max-width: 440px; margin: 0 auto 16px; }
.bc-nl-form input { flex: 1; padding: 14px 20px; background: #fff; border: 1.5px solid rgba(26,26,26,0.15); border-right: none; font-family: var(--dm); font-size: 14px; border-radius: 100px 0 0 100px; color: #1a1a1a; }
.bc-nl-form input:focus { border-color: #c4856a; outline: none; }
.bc-nl-form .btn-bc-primary { border-radius: 0 100px 100px 0; padding: 14px 28px; }
.bc-nl-success { font-family: var(--dm); font-size: 14px; color: #4caf8a; display: none; margin-top: 14px; }

.bc-footer { background: #faf8f6; border-top: 1px solid rgba(26,26,26,0.08); padding: 48px 80px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.bc-footer-logo { font-family: var(--lora); font-size: 22px; font-weight: 400; letter-spacing: 2px; color: #1a1a1a; }
.bc-footer h4 { font-family: var(--dm); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: #c4856a; margin-bottom: 12px; }
.bc-footer p { font-family: var(--dm); font-size: 13px; line-height: 1.8; color: rgba(26,26,26,0.4); }

/* ============================================================
   SECTION 5 — BOULANGERIE (crème vintage chaud · fond photo)
============================================================ */
#s-boulangerie { background: #f7f0e4; color: #2a1a08; }

.bk-header {
  position: sticky; top: 0; z-index: 400; height: 70px; padding: 0 56px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(247,240,228,0.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(181,69,27,0.15);
}
.bk-logo { font-family: var(--lora); font-size: 22px; font-weight: 600; letter-spacing: 1px; color: #2a1a08; }
.bk-logo span { color: #b5451b; font-style: italic; }
.bk-nav { display: flex; gap: 28px; }
.bk-nav a { font-family: var(--sans); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(42,26,8,0.45); transition: color 0.2s; }
.bk-nav a:hover { color: #2a1a08; }
.btn-bk-cta { background: #b5451b; color: #fff; padding: 11px 26px; font-family: var(--sans); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; transition: all 0.3s; border-radius: 2px; }
.btn-bk-cta:hover { background: #963815; }

.bk-hero { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; }
.bk-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bk-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,5,0,0.3) 0%, rgba(10,5,0,0.55) 50%, rgba(10,5,0,0.85) 100%); }
.bk-hero-inner { position: relative; z-index: 2; max-width: 760px; padding: 0 20px; }
.bk-eyebrow { font-family: var(--sans); font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: rgba(247,200,120,0.9); display: block; margin-bottom: 20px; }
.bk-hero h1 { font-family: var(--lora); font-size: clamp(44px, 7vw, 88px); font-weight: 600; line-height: 1.1; color: #fff; }
.bk-hero h1 em { font-style: italic; color: #f5c26a; }
.bk-hero p { font-family: var(--sans); font-size: 14px; letter-spacing: 2px; color: rgba(255,255,255,0.55); margin: 22px 0 40px; text-transform: uppercase; }
.btn-bk-primary { background: #f5c26a; color: #2a1a08; padding: 15px 42px; font-family: var(--sans); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; transition: all 0.3s; border-radius: 2px; }
.btn-bk-primary:hover { background: #e8b050; transform: translateY(-2px); }
.bk-hero-badges { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; gap: 16px; z-index: 2; flex-wrap: wrap; justify-content: center; }
.bk-hero-badge { background: rgba(247,240,228,0.12); border: 1px solid rgba(247,240,228,0.25); color: rgba(255,255,255,0.75); padding: 8px 18px; font-family: var(--sans); font-size: 12px; border-radius: 24px; backdrop-filter: blur(4px); }

.bk-products { padding: 90px 80px; background: #f7f0e4; }
.bk-products .eyebrow.bk { color: #b5451b; }
.bk-products h2 { font-family: var(--lora); font-size: 44px; font-weight: 600; color: #2a1a08; }
.bk-intro-text { font-family: var(--sans); font-size: 14px; color: rgba(42,26,8,0.45); margin-top: 8px; letter-spacing: 1px; }
.bk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bk-item { background: #fff; border-radius: 4px; overflow: hidden; box-shadow: 0 2px 12px rgba(42,26,8,0.06); transition: transform 0.3s, box-shadow 0.3s; }
.bk-item:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(42,26,8,0.12); }
.bk-item-img { height: 180px; overflow: hidden; }
.bk-item-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.bk-item:hover .bk-item-img img { transform: scale(1.06); }
.bk-item-body { padding: 20px 24px; }
.bk-item-name { font-family: var(--lora); font-size: 18px; font-weight: 600; color: #2a1a08; margin-bottom: 6px; }
.bk-item-price { font-family: var(--lora); font-size: 20px; color: #b5451b; margin-bottom: 16px; }
.btn-bk-add { background: #2a1a08; color: #fff; border: none; padding: 10px 20px; font-family: var(--sans); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; transition: all 0.2s; border-radius: 2px; }
.btn-bk-add:hover { background: #b5451b; }

/* Photo strip */
.bk-photo-strip { display: grid; grid-template-columns: repeat(4, 1fr); height: 280px; gap: 3px; }
.bk-strip-item { overflow: hidden; position: relative; }
.bk-strip-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s; }
.bk-strip-item:hover img { transform: scale(1.07); }

/* Boulangerie order modal */
.bk-order-items { min-height: 60px; margin-bottom: 16px; }
.order-line { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #f0f0f0; font-family: var(--sans); font-size: 14px; }
.order-line .remove-btn { background: none; color: #ccc; font-size: 16px; transition: color 0.2s; }
.order-line .remove-btn:hover { color: #e0574a; }
.bk-order-add { background: #fafaf8; border-radius: 8px; padding: 16px; margin-bottom: 16px; }
.bk-order-add p { font-family: var(--sans); font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: #aaa; margin-bottom: 12px; }
.bk-mini-items { display: flex; gap: 8px; flex-wrap: wrap; }
.bk-mini-btn { background: #fff; border: 1.5px solid #e5e5e5; padding: 6px 12px; border-radius: 20px; font-size: 16px; transition: border-color 0.2s; }
.bk-mini-btn:hover { border-color: #b5451b; }
.bk-order-total { font-family: var(--display); font-size: 22px; text-align: right; margin: 16px 0 8px; color: #1a1a1a; }

.bk-footer { background: #2a1a08; padding: 48px 80px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; border-top: 1px solid rgba(181,69,27,0.3); }
.bk-footer-logo { font-family: var(--lora); font-size: 22px; font-weight: 600; color: #f7f0e4; }
.bk-footer h4 { font-family: var(--sans); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: #f5c26a; margin-bottom: 12px; }
.bk-footer p { font-family: var(--sans); font-size: 13px; line-height: 1.8; color: rgba(247,240,228,0.4); }

/* ============================================================
   SECTION 6 — HÔTEL (vert forêt · champagne · photos)
============================================================ */
#s-hotel { background: #0f1f16; color: #e8e4d8; }

.ht-header {
  position: sticky; top: 0; z-index: 400; height: 70px; padding: 0 56px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(15,31,22,0.96); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(174,193,138,0.18);
}
.ht-logo { font-family: var(--serif); font-size: 22px; font-weight: 300; letter-spacing: 4px; text-transform: uppercase; color: #e8e4d8; }
.ht-logo span { color: #aec18a; }
.ht-nav { display: flex; gap: 28px; }
.ht-nav a { font-family: var(--sans); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(232,228,216,0.45); transition: color 0.2s; }
.ht-nav a:hover { color: #e8e4d8; }
.btn-ht-cta { background: #aec18a; color: #0f1f16; padding: 11px 28px; font-family: var(--sans); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; transition: all 0.3s; }
.btn-ht-cta:hover { background: #c0d09a; }

.ht-hero { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; }
.ht-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ht-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(5,15,8,0.3) 0%, rgba(5,15,8,0.55) 50%, rgba(5,15,8,0.9) 100%); }
.ht-hero-inner { position: relative; z-index: 2; max-width: 760px; }
.ht-eyebrow { font-family: var(--sans); font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: rgba(174,193,138,0.85); display: block; margin-bottom: 20px; }
.ht-hero h1 { font-family: var(--display); font-size: clamp(42px, 6.5vw, 88px); font-weight: 400; line-height: 1.1; color: #e8e4d8; }
.ht-hero h1 em { font-style: italic; color: #aec18a; }
.ht-hero p { font-family: var(--sans); font-size: 14px; letter-spacing: 2px; color: rgba(232,228,216,0.4); margin: 22px 0 40px; text-transform: uppercase; }
.btn-ht-primary { background: #aec18a; color: #0f1f16; padding: 15px 42px; font-family: var(--sans); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; transition: all 0.3s; }
.btn-ht-primary:hover { background: #c0d09a; transform: translateY(-2px); }
.btn-ht-small { background: transparent; border: 1px solid #aec18a; color: #aec18a; padding: 8px 20px; font-family: var(--sans); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; transition: all 0.2s; }
.btn-ht-small:hover { background: #aec18a; color: #0f1f16; }

.ht-book-bar { background: rgba(255,255,255,0.04); border: 1px solid rgba(174,193,138,0.2); padding: 28px 56px; display: flex; align-items: flex-end; gap: 24px; }
.ht-book-field { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.ht-book-field label { font-family: var(--sans); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(232,228,216,0.45); }
.ht-book-field input, .ht-book-field select { padding: 11px 14px; background: rgba(232,228,216,0.05); border: 1px solid rgba(174,193,138,0.25); color: #e8e4d8; font-family: var(--sans); font-size: 14px; border-radius: 4px; transition: border-color 0.2s; }
.ht-book-field input:focus, .ht-book-field select:focus { border-color: #aec18a; outline: none; }
.ht-book-field select option { background: #0f1f16; }
.ht-book-sep { font-size: 18px; color: rgba(174,193,138,0.5); margin-bottom: 12px; }

.ht-rooms { padding: 90px 56px; }
.ht-rooms .eyebrow.ht { color: #aec18a; }
.ht-rooms h2 { font-family: var(--display); font-size: 44px; font-weight: 400; color: #e8e4d8; }
.ht-rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ht-room { background: rgba(255,255,255,0.03); border: 1px solid rgba(174,193,138,0.1); overflow: hidden; transition: all 0.3s; border-radius: 4px; }
.ht-room:hover { border-color: rgba(174,193,138,0.4); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.ht-room-img { height: 240px; position: relative; overflow: hidden; }
.ht-room-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.ht-room:hover .ht-room-img img { transform: scale(1.05); }
.ht-room-badge { position: absolute; top: 14px; left: 14px; background: rgba(15,31,22,0.85); color: #aec18a; padding: 5px 14px; font-family: var(--sans); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; border: 1px solid rgba(174,193,138,0.3); }
.ht-room-badge.popular { background: #aec18a; color: #0f1f16; border-color: #aec18a; }
.ht-room-badge.suite { background: rgba(232,228,216,0.15); color: #e8e4d8; border-color: rgba(232,228,216,0.3); }
.ht-room-info { padding: 24px 28px; }
.ht-room-info h3 { font-family: var(--display); font-size: 22px; font-weight: 400; color: #e8e4d8; margin-bottom: 8px; }
.ht-room-info p { font-family: var(--sans); font-size: 13px; line-height: 1.6; color: rgba(232,228,216,0.45); margin-bottom: 20px; }
.ht-room-footer { display: flex; justify-content: space-between; align-items: center; }
.ht-price { font-family: var(--sans); font-size: 13px; color: rgba(232,228,216,0.5); }
.ht-price strong { font-family: var(--display); font-size: 20px; color: #aec18a; font-weight: 400; }

.ht-footer { background: #070f0a; padding: 48px 56px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; border-top: 1px solid rgba(174,193,138,0.12); }
.ht-footer-logo { font-family: var(--serif); font-size: 22px; font-weight: 300; letter-spacing: 3px; text-transform: uppercase; color: #e8e4d8; }
.ht-footer h4 { font-family: var(--sans); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: #aec18a; margin-bottom: 12px; }
.ht-footer p { font-family: var(--sans); font-size: 13px; line-height: 1.8; color: rgba(232,228,216,0.35); }

/* ============================================================
   SECTION 7 — FITNESS (noir pur · jaune néon · impact)
============================================================ */
#s-fitness { background: #0c0c0c; color: #f0f0f0; }

.ft-header {
  position: sticky; top: 0; z-index: 400; height: 70px; padding: 0 56px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(12,12,12,0.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212,255,0,0.1);
}
.ft-logo { font-family: var(--dm); font-size: 20px; font-weight: 900; letter-spacing: 4px; text-transform: uppercase; color: #f0f0f0; }
.ft-logo span { color: #d4ff00; }
.ft-nav { display: flex; gap: 32px; }
.ft-nav a { font-family: var(--dm); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(240,240,240,0.4); transition: color 0.2s; }
.ft-nav a:hover { color: #f0f0f0; }
.btn-ft-cta { background: #d4ff00; color: #111; padding: 11px 26px; font-family: var(--dm); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 900; border-radius: 2px; transition: all 0.3s; }
.btn-ft-cta:hover { background: #bfe600; }

/* Fitness Hero pleine photo */
.ft-hero { height: 100vh; display: flex; align-items: flex-end; position: relative; overflow: hidden; }
.ft-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.ft-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.85) 100%); }
.ft-hero-inner { position: relative; z-index: 2; padding: 0 80px 80px; }
.ft-eyebrow { font-family: var(--dm); font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: #d4ff00; display: block; margin-bottom: 16px; }
.ft-hero h1 { font-family: var(--dm); font-size: clamp(60px, 10vw, 130px); font-weight: 900; line-height: 0.92; color: #f0f0f0; text-transform: uppercase; letter-spacing: -2px; margin-bottom: 20px; }
.ft-hero h1 em { font-style: normal; color: #d4ff00; }
.ft-hero p { font-family: var(--dm); font-size: 15px; color: rgba(240,240,240,0.5); margin-bottom: 36px; max-width: 440px; letter-spacing: 0.5px; }
.ft-hero-btns { display: flex; gap: 14px; }
.btn-ft-primary { background: #d4ff00; color: #111; padding: 14px 36px; font-family: var(--dm); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 900; border-radius: 2px; transition: all 0.3s; }
.btn-ft-primary:hover { background: #bfe600; transform: translateY(-2px); }
.btn-ft-ghost { background: transparent; color: #f0f0f0; padding: 14px 36px; border: 1.5px solid rgba(240,240,240,0.3); font-family: var(--dm); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; border-radius: 2px; transition: all 0.3s; }
.btn-ft-ghost:hover { border-color: #f0f0f0; }
.ft-hero-stats { position: absolute; top: 50%; right: 80px; transform: translateY(-50%); z-index: 2; display: flex; flex-direction: column; gap: 32px; }
.ft-stat { text-align: right; }
.ft-stat strong { display: block; font-family: var(--dm); font-size: 36px; font-weight: 900; color: #d4ff00; line-height: 1; }
.ft-stat span { font-family: var(--dm); font-size: 12px; color: rgba(240,240,240,0.4); letter-spacing: 1px; }

/* Fitness photo strip */
.ft-photo-strip { display: grid; grid-template-columns: repeat(4, 1fr); height: 280px; }
.ft-strip-item { position: relative; overflow: hidden; }
.ft-strip-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; filter: grayscale(30%); }
.ft-strip-item:hover img { transform: scale(1.07); filter: grayscale(0%); }
.ft-strip-item span { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(12,12,12,0.85), transparent); color: #d4ff00; padding: 20px 16px 12px; font-family: var(--dm); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }

/* Fitness Plans */
.ft-plans { padding: 90px 80px; background: #0c0c0c; }
.ft-section-header h2 { font-family: var(--dm); font-size: 44px; font-weight: 900; color: #f0f0f0; text-transform: uppercase; }
.eyebrow.ft { color: #d4ff00; }
.ft-plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.ft-plan { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); padding: 40px 36px; position: relative; transition: all 0.3s; }
.ft-plan:hover { border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.04); }
.ft-plan.popular { border-color: rgba(212,255,0,0.35); background: rgba(212,255,0,0.03); transform: translateY(-8px); box-shadow: 0 24px 48px rgba(0,0,0,0.5); }
.ft-plan-tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: #d4ff00; color: #111; padding: 4px 18px; font-family: var(--dm); font-size: 11px; font-weight: 900; letter-spacing: 1px; border-radius: 12px; white-space: nowrap; }
.ft-plan-header { margin-bottom: 28px; }
.ft-plan-name { font-family: var(--dm); font-size: 12px; letter-spacing: 4px; text-transform: uppercase; color: rgba(240,240,240,0.4); display: block; margin-bottom: 10px; }
.ft-plan.popular .ft-plan-name { color: #d4ff00; }
.ft-plan-price { font-family: var(--dm); font-size: 56px; font-weight: 900; color: #f0f0f0; line-height: 1; }
.ft-plan-price span { font-size: 16px; color: rgba(240,240,240,0.4); font-weight: 400; }
.ft-plan-features { margin-bottom: 32px; }
.ft-plan-features li { font-family: var(--dm); font-size: 14px; color: rgba(240,240,240,0.6); padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.ft-plan-features li.disabled { color: rgba(240,240,240,0.2); }
.btn-ft-plan { width: 100%; padding: 14px; background: rgba(255,255,255,0.05); color: #f0f0f0; border: 1px solid rgba(255,255,255,0.12); font-family: var(--dm); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; border-radius: 2px; transition: all 0.3s; }
.btn-ft-plan:hover { background: rgba(255,255,255,0.1); }
.btn-ft-plan.accent { background: #d4ff00; color: #111; border-color: #d4ff00; }
.btn-ft-plan.accent:hover { background: #bfe600; }

.ft-newsletter { background: #161616; padding: 90px 80px; text-align: center; border-top: 1px solid rgba(212,255,0,0.08); }
.ft-newsletter h2 { font-family: var(--dm); font-size: 42px; font-weight: 900; color: #f0f0f0; margin-bottom: 14px; text-transform: uppercase; }
.ft-newsletter h2 em { font-style: normal; color: #d4ff00; }
.ft-newsletter p { font-family: var(--dm); font-size: 15px; color: rgba(240,240,240,0.4); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.ft-nl-form { display: flex; max-width: 480px; margin: 0 auto 16px; }
.ft-nl-input { flex: 1; padding: 14px 20px; background: rgba(255,255,255,0.05); border: 1.5px solid rgba(212,255,0,0.2); border-right: none; color: #f0f0f0; font-family: var(--dm); font-size: 14px; border-radius: 2px 0 0 2px; }
.ft-nl-input:focus { border-color: #d4ff00; outline: none; }
.ft-nl-form .btn-ft-primary { border-radius: 0 2px 2px 0; padding: 14px 28px; }
.ft-nl-success { font-family: var(--dm); font-size: 14px; color: #d4ff00; display: none; margin-top: 14px; }

.ft-footer { background: #080808; padding: 48px 80px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; border-top: 1px solid rgba(212,255,0,0.08); }
.ft-footer-logo { font-family: var(--dm); font-size: 20px; font-weight: 900; letter-spacing: 4px; text-transform: uppercase; color: #f0f0f0; }
.ft-footer h4 { font-family: var(--dm); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: #d4ff00; margin-bottom: 12px; }
.ft-footer p { font-family: var(--dm); font-size: 13px; line-height: 1.8; color: rgba(240,240,240,0.3); }

/* ============================================================
   RESPONSIVE (tablet)
============================================================ */
@media (max-width: 1024px) {
  .r-gallery-strip { grid-template-columns: 1fr 1fr; height: 280px; }
  .r-gallery-strip .r-gal-item:last-child { display: none; }
  .r-about { grid-template-columns: 1fr; }
  .r-about-img { min-height: 340px; }
  .r-menu-grid, .sl-services-grid, .bt-grid, .bc-grid, .bk-grid, .ht-rooms-grid, .ft-plans-grid { grid-template-columns: repeat(2, 1fr); }
  .r-footer, .sl-footer, .bt-footer, .bc-footer, .bk-footer, .ht-footer, .ft-footer { grid-template-columns: 1fr 1fr; gap: 32px; }
  .product-modal { grid-template-columns: 1fr; }
  .pm-img { min-height: 220px; height: 220px; }
  .pm-info { padding: 24px 28px; }
  .side-nav { display: none; }
  .ht-book-bar { flex-wrap: wrap; padding: 24px 28px; }
  .sl-hero, .bt-hero, .bc-hero { grid-template-columns: 1fr; }
  .sl-hero-img { height: 50vh; }
  .bt-hero-right, .bc-hero-right { height: 50vh; position: relative; }
  .bc-brand { grid-template-columns: 1fr; }
  .bc-brand-img { height: 300px; }
  .ft-hero-stats { display: none; }
  .sl-gallery { grid-template-columns: 1fr 1fr; height: auto; }
  .sl-gal-tall { grid-row: span 1; height: 240px; }
  .sl-gal-col { grid-template-rows: unset; }
  .sl-gal-col .sl-gal-item { height: 240px; }
  .bk-photo-strip, .ft-photo-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .r-header, .sl-header, .bt-header, .bc-header, .bk-header, .ht-header, .ft-header { padding: 0 20px; }
  .r-nav, .sl-nav, .bt-nav, .bc-nav, .bk-nav, .ht-nav, .ft-nav { display: none; }
  .r-menu-section, .sl-services, .bt-products, .bc-products, .bc-newsletter, .bk-products, .ht-rooms, .ft-plans, .ft-newsletter { padding: 60px 24px; }
  .r-about-text { padding: 48px 24px; }
  .r-gallery-strip { grid-template-columns: 1fr; height: 220px; }
  .r-gallery-strip .r-gal-item:not(:first-child) { display: none; }
  .r-cta-banner, .sl-cta { padding: 60px 24px; }
  .r-footer, .sl-footer, .bt-footer, .bc-footer, .bk-footer, .ht-footer, .ft-footer { padding: 40px 24px; grid-template-columns: 1fr; }
  .r-menu-grid, .sl-services-grid, .bt-grid, .bc-grid, .bk-grid, .ht-rooms-grid, .ft-plans-grid { grid-template-columns: 1fr; }
  .bt-hero-left, .sl-hero-content, .bc-hero-left { padding: 48px 24px; }
  .ft-hero-inner { padding: 0 24px 60px; }
  .bk-photo-strip, .ft-photo-strip { grid-template-columns: repeat(2, 1fr); height: 200px; }
  .modal-box { padding: 28px 20px; }
  .bc-brand-text { padding: 48px 24px; }
  .bt-products-header, .bc-products-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}
