/* Visually hidden — readable by search engines only */
.seo-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ===================== RESET & BASE ===================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold:     #C9A84C;
  --gold-lt:  #E8C97A;
  --gold-dim: rgba(201,168,76,.25);
  --navy:     #0a1628;
  --navy-d:   #060f1c;
  --card-bg:  rgba(13,31,56,.85);
  --w:        #fff;
  --w-dim:    rgba(255,255,255,.65);
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--navy);
  color: var(--w);
  overflow-x: hidden;
}

.gold { color: var(--gold); }
.sp   { font-size: .55em; vertical-align: middle; }

/* ===================== HEADER ===================== */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 50px;
  background: rgba(5,12,24,.97);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid var(--gold-dim);
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  cursor: pointer;
}

.logo img {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-dim);
  flex-shrink: 0;
}

.brand-name {
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(201,168,76,.35);
  padding-left: 14px;
  line-height: 1.1;
  gap: 2px;
}

.brand-sais {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  font-style: italic;
  color: var(--w);
  letter-spacing: 3px;
}

.brand-beauty {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 7px;
  color: var(--gold);
  text-transform: uppercase;
}

.nav { display: flex; gap: 36px; }

.nav-link {
  text-decoration: none;
  color: var(--w);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding-bottom: 3px;
  position: relative;
  transition: color .2s;
}
.nav-link.active { color: var(--gold); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}
.nav-link:hover { color: var(--gold); }

.btn-reserve-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #C9A84C, #E8C97A, #C9A84C);
  color: #07121f;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-family: 'Montserrat', sans-serif;
  transition: opacity .2s;
  white-space: nowrap;
}
.btn-reserve-nav:hover { opacity: .88; }

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-sep {
  display: none; /* shown only on mobile */
  width: 1px;
  height: 28px;
  background: rgba(201,168,76,.35);
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: calc(100vh - 100px);
  background: var(--navy);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5,12,24,1)   0%,
    rgba(5,12,24,.98) 22%,
    rgba(5,12,24,.70) 40%,
    rgba(5,12,24,.20) 62%,
    rgba(5,12,24,.45) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 60px;
  gap: 24px;
  min-height: calc(100vh - 120px);
}

.hero-left { max-width: 510px; }

.hero-eyebrow {
  color: var(--gold);
  font-size: 11.5px;
  letter-spacing: 4px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.6vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 4px;
}
.hero-h1-kw {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(13px, 1.3vw, 18px);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 4px;
  margin-top: 6px;
  text-transform: uppercase;
}
.seo-section-kw {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(13px, 1.3vw, 17px);
  font-weight: 300;
  font-style: italic;
  color: rgba(201,168,76,.65);
  letter-spacing: 3px;
  text-align: center;
  text-transform: uppercase;
  margin-top: -12px;
  margin-bottom: 28px;
}

.hero-script {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(32px, 3.6vw, 52px);
  color: var(--gold-lt);
  margin-bottom: 18px;
  line-height: 1.25;
}

.hero-desc {
  color: var(--w-dim);
  font-size: 14.5px;
  line-height: 1.78;
  margin-bottom: 34px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #C9A84C, #E8C97A, #C9A84C);
  color: #07121f;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-family: 'Montserrat', sans-serif;
  transition: opacity .2s;
  white-space: nowrap;
}
.btn-gold:hover { opacity: .88; }

.phone-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--gold);
  padding: 12px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: background .2s;
}
.phone-pill:hover { background: rgba(201,168,76,.08); }
.phone-pill i      { color: var(--gold); font-size: 17px; }
.phone-pill strong { display: block; font-size: 15px; font-weight: 700; }
.phone-pill small  { display: block; font-size: 11px; color: var(--w-dim); margin-top: 2px; }

.hero-badges { display: flex; gap: 28px; flex-wrap: wrap; }
.badge-item  { display: flex; align-items: center; gap: 9px; }
.badge-item i      { color: var(--gold); font-size: 20px; }
.badge-item strong { display: block; font-size: 13px; font-weight: 600; }
.badge-item small  { display: block; font-size: 10.5px; color: var(--w-dim); margin-top: 2px; }

/* Art Card */
.art-card {
  flex-shrink: 0;
  width: 250px;
  background: rgba(5,12,24,.72);
  border: 1px solid var(--gold-dim);
  border-radius: 18px;
  padding: 32px 22px;
  text-align: center;
  backdrop-filter: blur(14px);
}
.art-h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 5px;
  margin-bottom: 4px;
}
.art-sub {
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--w-dim);
  margin-bottom: 6px;
  font-weight: 500;
}
.art-script {
  font-family: 'Great Vibes', cursive;
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 18px;
}
.art-line {
  width: 50%;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 14px;
}
.art-passion { font-size: 11px; color: var(--w-dim); }

/* ===================== SERVICES ===================== */
.services {
  padding: 52px 48px 60px;
  background: var(--navy-d);
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 34px;
}
.section-title h2 {
  font-size: 14px;
  letter-spacing: 5px;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}
.title-line {
  flex: 1;
  max-width: 130px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.title-line.rev { background: linear-gradient(to left, transparent, var(--gold)); }
.gold-dot { color: var(--gold); font-size: 10px; }

.services-wrapper {
  display: grid;
  grid-template-columns: 1fr 285px;
  gap: 18px;
  align-items: start;
}

.services-scroll { width: 100%; }

.services-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 185px));
  column-gap: 12px;
  row-gap: 0;
  justify-content: center;
}

/* Row separator on second row cards (5→8) */
.services-cards .svc-card:nth-child(5),
.services-cards .svc-card:nth-child(6),
.services-cards .svc-card:nth-child(7),
.services-cards .svc-card:nth-child(8) {
  margin-top: 14px;
  border-top: 1px solid var(--gold-dim);
}

/* Service Card */
.svc-card {
  background: var(--card-bg);
  border: 1px solid var(--gold-dim);
  border-radius: 15px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(201,168,76,.15);
}

.svc-img { height: 145px; overflow: hidden; }
.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.svc-card:hover .svc-img img { transform: scale(1.06); }

@keyframes svcPulse {
  0%   { box-shadow: 0 0 0 0 rgba(201,168,76,.55), 0 14px 40px rgba(201,168,76,.15); border-color: var(--gold); }
  50%  { box-shadow: 0 0 0 10px rgba(201,168,76,.0), 0 18px 50px rgba(201,168,76,.3); border-color: var(--gold); }
  100% { box-shadow: 0 0 0 0 rgba(201,168,76,0), 0 14px 40px rgba(201,168,76,.1); border-color: var(--gold-dim); }
}
.svc-card.svc-highlighted {
  animation: svcPulse 1.8s ease-out forwards;
}

.svc-info {
  padding: 11px 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.svc-icon {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
  width: 18px;
  text-align: center;
}
.svc-info strong {
  display: block;
  font-size: 9.5px;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 3px;
  text-transform: uppercase;
}
.svc-info p {
  font-size: 9px;
  color: var(--w-dim);
  line-height: 1.55;
}

/* ===================== SIDEBAR ===================== */
.sidebar-inner {
  background: var(--card-bg);
  border: 1px solid var(--gold-dim);
  border-radius: 15px;
  overflow: hidden;
}

.sb-section { padding: 16px 18px; }

.sb-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 9px;
}
.sb-head strong {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
}

.sb-text {
  font-size: 11.5px;
  color: var(--w-dim);
  line-height: 1.65;
  padding-left: 24px;
}

.sb-divider {
  height: 1px;
  background: var(--gold-dim);
  margin: 0 14px;
}

.sb-handle {
  font-size: 11.5px;
  color: var(--w-dim);
  padding-left: 24px;
  margin-bottom: 10px;
}

.sb-insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.sb-insta-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 7px;
}

.sb-insta-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-top: 1px solid var(--gold-dim);
  text-decoration: none;
  transition: background .2s;
}
.sb-insta-link:hover { background: rgba(201,168,76,.06); }
.sb-insta-link span {
  flex: 1;
  font-size: 12.5px;
  color: var(--gold);
  font-weight: 500;
}

/* ===================== À PROPOS ===================== */
.apropos {
  padding: 60px 48px;
  background: var(--navy);
}

.apropos-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.apropos-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: var(--w-dim);
  line-height: 1.8;
}
.apropos-lead em {
  color: var(--gold-lt);
  font-style: italic;
}

.apropos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ap-card {
  background: var(--card-bg);
  border: 1px solid var(--gold-dim);
  border-radius: 18px;
  padding: 32px 26px;
  text-align: center;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.ap-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.ap-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(201,168,76,.12);
  border-color: rgba(201,168,76,.5);
}

.ap-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,76,.15), rgba(201,168,76,.05));
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.ap-icon-wrap i {
  color: var(--gold);
  font-size: 22px;
}

.ap-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--w);
}
.ap-card p {
  font-size: 13px;
  color: var(--w-dim);
  line-height: 1.75;
}

/* ===================== WHATSAPP MODAL ===================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,12,24,.85);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.modal-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  background: linear-gradient(145deg, #0d1f38, #060f1c);
  border: 1px solid var(--gold-dim);
  border-radius: 24px;
  padding: 44px 40px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  position: relative;
  transform: scale(.92) translateY(20px);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(201,168,76,.1);
}
.modal-overlay.show .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--gold-dim);
  color: var(--w-dim);
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.modal-close:hover { background: rgba(201,168,76,.15); color: var(--gold); }

.modal-wa-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(37,211,102,.3);
}
.modal-wa-icon i { font-size: 34px; color: #fff; }

.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}
.modal-sub {
  font-size: 12.5px;
  color: var(--w-dim);
  margin-bottom: 24px;
  letter-spacing: .5px;
}
.modal-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,.08);
  border: 1px solid var(--gold-dim);
  border-radius: 50px;
  padding: 10px 22px;
  margin-bottom: 22px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  text-decoration: none;
  padding: 15px 36px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
  transition: opacity .2s, transform .2s;
  box-shadow: 0 8px 24px rgba(37,211,102,.25);
  margin-bottom: 18px;
}
.btn-whatsapp:hover { opacity: .9; transform: translateY(-2px); }
.btn-whatsapp i { font-size: 18px; }

.modal-note {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2px;
}

/* ===================== FOOTER ===================== */
.footer {
  background: #050c18;
  border-top: 1px solid var(--gold-dim);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.4fr;
  gap: 48px;
  padding: 60px 60px 40px;
}

/* Brand column */
.ft-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.ft-logo img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold-dim);
  flex-shrink: 0;
}

.ft-tagline {
  font-family: 'Great Vibes', cursive;
  font-size: 22px;
  color: var(--gold-lt);
  margin-bottom: 12px;
}

.ft-desc {
  font-size: 12.5px;
  color: var(--w-dim);
  line-height: 1.75;
  margin-bottom: 20px;
}

.ft-socials { display: flex; gap: 10px; }

.ft-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .2s;
}
.ft-social-btn:hover {
  background: rgba(201,168,76,.12);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.ft-social-btn.wa { color: #25D366; border-color: rgba(37,211,102,.3); }
.ft-social-btn.wa:hover { background: rgba(37,211,102,.1); border-color: #25D366; }

/* Columns */
.ft-heading {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold-dim);
}

.ft-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ft-links li a {
  text-decoration: none;
  color: var(--w-dim);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .2s, gap .2s;
}
.ft-links li a i { color: var(--gold); font-size: 11px; }
.ft-links li a:hover { color: var(--gold); gap: 12px; }

/* Contact list */
.ft-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ft-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: var(--w-dim);
  line-height: 1.6;
}
.ft-contact-list li i { margin-top: 3px; font-size: 13px; flex-shrink: 0; }
.ft-contact-list li a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity .2s;
}
.ft-contact-list li a:hover { opacity: .75; }

/* Divider */
.ft-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 60px;
}
.ft-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim));
}
.ft-divider-line:last-child {
  background: linear-gradient(to left, transparent, var(--gold-dim));
}
.ft-divider-icon { color: var(--gold); font-size: 10px; }

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px 28px;
  gap: 16px;
  flex-wrap: wrap;
}
.ft-copy {
  font-size: 11.5px;
  color: var(--w-dim);
}
.ft-copy em {
  color: var(--gold);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
}
.ft-bottom-script {
  font-family: 'Great Vibes', cursive;
  font-size: 20px;
  color: var(--gold-lt);
}
.ft-badges {
  display: flex;
  gap: 20px;
}
.ft-badges span {
  font-size: 11px;
  color: var(--w-dim);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===================== TABLET — 1024px ===================== */
@media (max-width: 1024px) {
  .header { padding: 10px 24px; }

  .nav { gap: 22px; }
  .nav-link { font-size: 11px; }

  .hero-content { padding: 40px 32px; }
  .art-card { width: 210px; padding: 24px 16px; }
  .art-h2 { font-size: 22px; }
  .art-script { font-size: 26px; }

  .services { padding: 40px 24px 48px; }
  .services-wrapper { grid-template-columns: 1fr 255px; gap: 14px; }
  .services-cards { grid-template-columns: repeat(4, minmax(0, 155px)); }
  .svc-img { height: 125px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; padding: 40px 32px 28px; }
  .ft-divider { padding: 0 32px; }
  .footer-bottom { padding: 16px 32px 24px; }
}

/* ===================== MOBILE — 768px ===================== */
@media (max-width: 768px) {
  /* Header */
  .header {
    padding: 0 14px;
    height: 64px;
    min-height: 64px;
    position: sticky;
    top: 0;
    flex-wrap: nowrap;
    align-items: center;
  }

  /* Logo — takes remaining space after header-right */
  .logo { gap: 8px; flex: 1 1 0; min-width: 0; }
  .logo img { width: 48px; height: 48px; flex-shrink: 0; }
  .brand-name { display: flex; min-width: 0; overflow: hidden; }
  .brand-sais  { font-size: 16px; letter-spacing: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .brand-beauty { font-size: 8px; letter-spacing: 3px; white-space: nowrap; }

  /* Right group always shrink-proof */
  .header-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
  .header-sep { display: block; }
  .btn-reserve-nav {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 8px 14px;
    font-size: 10px;
    letter-spacing: 1px;
    gap: 4px;
  }

  .nav {
    display: none;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(5,12,24,.98);
    padding: 90px 32px 40px;
    border-bottom: 1px solid var(--gold-dim);
    z-index: 998;
  }
  .nav.open { display: flex; }
  .nav-link {
    font-size: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(201,168,76,.1);
    letter-spacing: 2px;
  }
  .nav-link.active::after { display: none; }

  .hamburger { display: flex; flex-shrink: 0; }

  /* Hero */
  .hero { min-height: 100svh; align-items: flex-end; padding-bottom: 0; }

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(5,12,24,.55) 0%,
      rgba(5,12,24,.92) 55%,
      rgba(5,12,24,.99) 100%
    );
  }

  .hero-bg { object-position: 65% center; }

  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 24px 36px;
    gap: 20px;
    justify-content: flex-end;
    min-height: 100svh;
  }

  .hero-left { max-width: 100%; }

  .hero-eyebrow { font-size: 10px; letter-spacing: 3px; margin-bottom: 10px; }

  .hero-h1 { font-size: 32px; }
  .hero-script { font-size: 30px; margin-bottom: 12px; }
  .hero-desc { font-size: 13px; margin-bottom: 24px; }
  .hero-desc br { display: none; }

  .hero-ctas { gap: 12px; margin-bottom: 28px; }
  .btn-gold  { font-size: 11px; padding: 13px 22px; }
  .phone-pill { padding: 10px 16px; }
  .phone-pill strong { font-size: 13px; }

  .hero-badges { gap: 18px; }
  .badge-item i      { font-size: 17px; }
  .badge-item strong { font-size: 12px; }
  .badge-item small  { font-size: 9.5px; }

  /* Art card hidden on mobile, shown as block below hero */
  .art-card {
    width: 100%;
    flex-shrink: unset;
    border-radius: 14px;
    padding: 20px 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }
  .art-h2         { font-size: 18px; letter-spacing: 3px; margin: 0; }
  .art-sub        { font-size: 10px; letter-spacing: 1.5px; margin: 3px 0; }
  .art-script     { font-size: 22px; margin: 0; }
  .art-line       { display: none; }
  .art-passion    { display: none; }

  /* Services */
  .services { padding: 36px 20px 44px; }

  .section-title { gap: 10px; }
  .section-title h2 { font-size: 12px; letter-spacing: 3px; }
  .title-line { max-width: 60px; }

  .services-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-scroll { overflow-x: unset; }

  .services-cards {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10px;
    row-gap: 0;
    width: 100%;
  }

  /* On 2-col mobile, row separator every 2 cards */
  .services-cards .svc-card:nth-child(3),
  .services-cards .svc-card:nth-child(4),
  .services-cards .svc-card:nth-child(5),
  .services-cards .svc-card:nth-child(6),
  .services-cards .svc-card:nth-child(7),
  .services-cards .svc-card:nth-child(8) {
    margin-top: 10px;
  }
  .services-cards .svc-card:nth-child(odd):nth-child(n+3) {
    border-top: 1px solid var(--gold-dim);
  }
  .services-cards .svc-card:nth-child(even):nth-child(n+4) {
    border-top: 1px solid var(--gold-dim);
  }

  .svc-img { height: 110px; }
  .svc-info { padding: 8px 7px; }
  .svc-info strong { font-size: 9px; }
  .svc-info p { font-size: 8px; }

  /* Sidebar full width on mobile */
  .sidebar { width: 100%; }
  .sidebar-inner { border-radius: 14px; }
  .sb-insta-grid img { border-radius: 8px; }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 24px 28px;
  }
  .ft-divider { padding: 0 24px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 28px;
    gap: 10px;
  }
  .ft-badges { flex-direction: column; gap: 8px; }
}

/* ===================== À PROPOS MOBILE ===================== */
@media (max-width: 768px) {
  .apropos { padding: 40px 20px; }
  .apropos-lead { font-size: 16px; }
  .apropos-grid { grid-template-columns: 1fr; gap: 14px; }
  .ap-card { padding: 26px 20px; }
  .modal-card { padding: 36px 24px; }
}
@media (min-width: 480px) and (max-width: 768px) {
  .apropos-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===================== SMALL PHONE — 420px ===================== */
@media (max-width: 420px) {
  .hero-h1     { font-size: 27px; }
  .hero-script { font-size: 26px; }
  .hero-ctas   { flex-direction: column; align-items: flex-start; }
  .btn-gold    { width: 100%; justify-content: center; }
  .phone-pill  { width: 100%; }
  .hero-badges { gap: 14px; }
}

/* ═══════════════════════════════════════════════════
   TARIFS SECTION
═══════════════════════════════════════════════════ */
.tarifs {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.tarifs-sub {
  text-align: center;
  color: rgba(255,255,255,.45);
  font-size: .8rem;
  letter-spacing: .1em;
  margin-top: -16px;
  margin-bottom: 48px;
}
.tarifs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 48px;
  align-items: start;
}
.tarif-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.2);
  box-shadow: 0 12px 48px rgba(0,0,0,.4);
  transition: transform .35s, box-shadow .35s;
}
.tarif-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
}
.tarif-card img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.tarif-card:hover img { transform: scale(1.02); }

.tarif-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 24px 24px;
  background: linear-gradient(to top, rgba(5,12,24,.9) 0%, transparent 100%);
  display: flex;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.tarif-card:hover .tarif-overlay { opacity: 1; }
.tarif-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: #07121f;
  text-decoration: none;
  padding: 11px 24px;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  transition: opacity .2s;
}
.tarif-cta:hover { opacity: .9; }

.tarifs-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-wa-tarif {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.3);
  border-radius: 8px;
  color: #25d366;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  transition: background .2s;
}
.btn-wa-tarif:hover { background: rgba(37,211,102,.18); }

@media (max-width: 768px) {
  .tarifs { padding: 50px 20px; }
  .tarifs-grid { grid-template-columns: 1fr; gap: 18px; }
  .tarif-overlay { opacity: 1; }
}

/* ═══════════════════════════════════════════════════
   ADMIN LOGIN MODAL EXTRAS
═══════════════════════════════════════════════════ */
.admin-login-card { max-width: 380px; }
.admin-field {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 12px;
}
.admin-field i { color: var(--gold); font-size: .85rem; width: 16px; text-align: center; }
.admin-field input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem;
}
.admin-field input::placeholder { color: rgba(255,255,255,.35); }
.admin-err {
  color: #e05c6a;
  font-size: .75rem;
  text-align: center;
  margin-bottom: 10px;
}
.admin-err.hidden { display: none; }

/* Admin button in footer */
.admin-lock-btn {
  background: transparent;
  border: 1px solid rgba(201,168,76,.55);
  color: rgba(201,168,76,.9);
  font-size: .82rem;
  font-family: inherit;
  letter-spacing: .06em;
  cursor: pointer;
  padding: 8px 18px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background .2s, color .2s, border-color .2s;
  margin-left: 12px;
}
.admin-lock-btn:hover {
  background: rgba(201,168,76,.15);
  border-color: var(--gold);
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════
   BOUTIQUE SECTION
═══════════════════════════════════════════════════ */
.boutique {
  padding: 80px 40px;
  max-width: 1300px;
  margin: 0 auto;
}
.boutique-sub {
  text-align: center;
  color: rgba(255,255,255,.5);
  font-size: .82rem;
  letter-spacing: .1em;
  margin-bottom: 48px;
  margin-top: -16px;
}
.boutique-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.boutique-empty {
  text-align: center;
  padding: 60px 20px;
  color: rgba(255,255,255,.3);
  font-size: .88rem;
}
.boutique-empty i { display: block; font-size: 3rem; color: rgba(201,168,76,.15); margin-bottom: 14px; }
.boutique-empty.hidden { display: none; }

.boutique-card {
  background: rgba(13,31,56,.85);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.boutique-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.boutique-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #0d1e3a;
}
.boutique-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.boutique-card:hover .boutique-img { transform: scale(1.06); }
.boutique-no-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: rgba(201,168,76,.15);
}
.boutique-img-count {
  position: absolute; top: 10px; right: 10px;
  background: rgba(5,12,24,.8);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 20px;
  font-size: .65rem; color: var(--gold);
  padding: 3px 9px;
  display: flex; align-items: center; gap: 4px;
}
.boutique-buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: #07121f;
  border-radius: 8px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.boutique-buy-btn:hover { opacity: .88; transform: translateY(-2px); }

.boutique-card-body { padding: 18px 20px; }
.boutique-prod-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 6px;
}
.boutique-prod-desc {
  font-size: .76rem;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.boutique-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.boutique-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}
.boutique-wa-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(37,211,102,.12);
  border: 1px solid rgba(37,211,102,.3);
  color: #25d366;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  font-size: .9rem;
  transition: background .2s;
}
.boutique-wa-btn:hover { background: rgba(37,211,102,.22); }

@media (max-width: 768px) {
  .boutique { padding: 50px 20px; }
  .boutique-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 480px) {
  .boutique-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   ADMIN BAR + SIDE PANELS
═══════════════════════════════════════════════════ */

/* Body shift when admin bar is visible */
body.admin-mode { padding-top: 52px; }
body.admin-mode .header { top: 52px; }

/* Admin bar — fixed top strip */
.admin-bar {
  position: fixed; top: 0; left: 0; right: 0;
  height: 52px; z-index: 1100;
  background: rgba(7,18,31,.98);
  border-bottom: 1px solid rgba(201,168,76,.3);
  display: flex; align-items: center;
  padding: 0 20px; gap: 10px;
}
.admin-bar.hidden { display: none; }

.ab-left { display: flex; align-items: center; }
.ab-center { display: flex; align-items: center; gap: 8px; flex: 1; justify-content: center; }
.ab-right { display: flex; align-items: center; }

.ab-count {
  background: rgba(201,168,76,.25); color: var(--gold);
  font-size: .6rem; font-weight: 700;
  border-radius: 10px; padding: 1px 6px; margin-left: 3px;
}
.ab-count.hidden { display: none; }

.ab-badge {
  font-size: .58rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--gold); color: #07121f;
  border-radius: 4px; padding: 3px 8px; flex-shrink: 0;
}

.ab-divider { width: 1px; height: 24px; background: rgba(201,168,76,.2); margin: 0 4px; }

.ab-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 7px 14px; border-radius: 8px;
  border: 1px solid rgba(201,168,76,.2);
  background: rgba(201,168,76,.06); color: rgba(255,255,255,.75);
  font-family: 'Montserrat', sans-serif; font-size: .72rem;
  font-weight: 600; letter-spacing: .06em; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.ab-btn i { color: var(--gold); font-size: .78rem; }
.ab-btn:hover { background: rgba(201,168,76,.14); color: #fff; border-color: rgba(201,168,76,.4); }

.ab-quit {
  margin-left: auto;
  display: flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 8px;
  border: 1px solid rgba(224,92,106,.25);
  background: none; color: rgba(224,92,106,.7);
  font-family: 'Montserrat', sans-serif; font-size: .7rem;
  font-weight: 600; cursor: pointer;
  transition: color .2s, background .2s, border-color .2s;
}
.ab-quit:hover { color: #e05c6a; background: rgba(224,92,106,.08); border-color: rgba(224,92,106,.5); }

/* Side panels — slide from right */
.side-panel {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 460px; max-width: 100vw;
  z-index: 1050;
  background: rgba(7,14,28,.98);
  border-left: 1px solid rgba(201,168,76,.18);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}
.side-panel.open { transform: translateX(0); box-shadow: -20px 0 60px rgba(0,0,0,.5); }

.sp-hdr {
  display: flex; align-items: center;
  padding: 0 18px;
  height: 56px; flex-shrink: 0;
  border-bottom: 1px solid rgba(201,168,76,.15);
  background: rgba(10,22,40,.95);
  gap: 10px;
}
.sp-hdr-title,
.sp-hdr h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 400; flex: 1;
  display: flex; align-items: center; gap: 8px;
}
.sp-hdr h3 i { color: var(--gold); font-size: .85rem; }

.sp-prod-top {
  padding: 12px 18px;
  border-bottom: 1px solid rgba(201,168,76,.1);
  flex-shrink: 0;
}
.sp-close {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  background: none; color: rgba(255,255,255,.4);
  font-size: .8rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color .2s, border-color .2s;
}
.sp-close:hover { color: #fff; border-color: rgba(255,255,255,.3); }

/* Week nav in reservations panel */
.sp-week-nav {
  display: flex; align-items: center;
  padding: 12px 18px;
  gap: 10px;
  border-bottom: 1px solid rgba(201,168,76,.1);
  flex-shrink: 0;
}
.sp-wk-btn {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,.2);
  background: rgba(13,26,48,.8); color: var(--gold);
  cursor: pointer; font-size: .72rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; flex-shrink: 0;
}
.sp-wk-btn:hover { background: rgba(201,168,76,.1); }
.sp-wk-label {
  font-family: 'Playfair Display', serif;
  font-size: .88rem; flex: 1; text-align: center;
  color: rgba(255,255,255,.8);
}

/* Stat pill */
.sp-stat {
  padding: 8px 18px; flex-shrink: 0;
  font-size: .74rem; color: rgba(255,255,255,.45);
  display: flex; align-items: center; gap: 7px;
}
.sp-stat i { color: var(--gold); }

/* Loading spinner */
.sp-loading {
  display: flex; justify-content: center; padding: 40px;
}
.sp-loading.hidden { display: none; }

.ap-spin {
  width: 30px; height: 30px;
  border: 2px solid rgba(201,168,76,.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: apSpin .7s linear infinite;
}
@keyframes apSpin { to { transform: rotate(360deg); } }

/* Bookings list */
.sp-booking-list {
  flex: 1; overflow-y: auto;
  padding: 0 18px 24px;
}
.sp-empty {
  text-align: center; padding: 50px 0;
  color: rgba(255,255,255,.2); font-size: .82rem;
  letter-spacing: .08em;
}

.sp-day-section { margin-bottom: 16px; }
.sp-day-label {
  display: flex; align-items: center; gap: 10px;
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.3);
  padding: 10px 0 6px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 8px;
}
.sp-day-label.sp-today { color: var(--gold); border-bottom-color: rgba(201,168,76,.2); }
.sp-today-chip {
  font-size: .6rem; background: var(--gold); color: #07121f;
  border-radius: 4px; padding: 1px 6px; font-weight: 700;
}
.sp-day-free {
  font-size: .7rem; color: rgba(255,255,255,.15);
  text-align: center; padding: 6px 0 2px;
  letter-spacing: .06em;
}

.sp-bk-row {
  display: flex; align-items: center; gap: 10px;
  background: rgba(201,168,76,.04);
  border: 1px solid rgba(201,168,76,.12);
  border-left: 3px solid var(--gold);
  border-radius: 8px; padding: 10px 12px;
  margin-bottom: 6px;
}
.sp-bk-time {
  font-size: .72rem; font-weight: 700; color: var(--gold);
  white-space: nowrap; flex-shrink: 0;
}
.sp-bk-details {
  flex: 1; display: flex; flex-direction: column; gap: 3px;
}
.sp-bk-details span {
  font-size: .7rem; color: rgba(255,255,255,.5);
  display: flex; align-items: center; gap: 5px;
}
.sp-bk-details i { font-size: .62rem; color: var(--gold); }
.sp-bk-del {
  width: 28px; height: 28px; border-radius: 7px; flex-shrink: 0;
  border: 1px solid rgba(224,92,106,.25);
  background: rgba(224,92,106,.08); color: #e05c6a;
  cursor: pointer; font-size: .7rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.sp-bk-del:hover { background: rgba(224,92,106,.22); }

/* Products panel list */
.sp-prod-list {
  flex: 1; overflow-y: auto;
  padding: 12px 18px 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.sp-prod-empty {
  display: flex; flex-direction: column; align-items: center;
  gap: 14px; padding: 50px 0;
  color: rgba(255,255,255,.3); font-size: .82rem; text-align: center;
}
.sp-prod-empty i { font-size: 2.2rem; color: rgba(201,168,76,.15); }
.sp-prod-empty.hidden { display: none; }

.sp-prod-row {
  display: flex; align-items: center; gap: 12px;
  background: rgba(13,26,48,.7);
  border: 1px solid rgba(201,168,76,.12);
  border-radius: 10px; padding: 10px 12px;
}
.sp-prod-img {
  width: 52px; height: 52px; border-radius: 8px;
  overflow: hidden; flex-shrink: 0;
  background: rgba(201,168,76,.05);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: rgba(201,168,76,.2);
}
.sp-prod-img img { width: 100%; height: 100%; object-fit: cover; }
.sp-prod-info {
  flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0;
}
.sp-prod-info strong { font-size: .85rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sp-prod-info span { font-size: .7rem; color: rgba(255,255,255,.4); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sp-prod-info em { font-size: .78rem; font-style: normal; color: var(--gold); }
.sp-prod-del {
  width: 30px; height: 30px; border-radius: 7px; flex-shrink: 0;
  border: 1px solid rgba(224,92,106,.25);
  background: rgba(224,92,106,.08); color: #e05c6a;
  cursor: pointer; font-size: .72rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.sp-prod-del:hover { background: rgba(224,92,106,.22); }

/* Add product button in panel header */
.ap-add-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border: none; border-radius: 8px;
  color: #07121f; font-family: 'Montserrat', sans-serif;
  font-size: .72rem; font-weight: 700; letter-spacing: .07em;
  cursor: pointer; transition: opacity .2s;
}
.ap-add-btn:hover { opacity: .9; }

/* Backdrop */
.sp-backdrop {
  position: fixed; inset: 0;
  z-index: 1040;
  background: rgba(5,10,20,.6);
  backdrop-filter: blur(2px);
}
.sp-backdrop.hidden { display: none; }

/* Modals — full-screen overlays (add product + delete confirm) */
.ap-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(5,12,24,.88);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; z-index: 1200;
}
.ap-modal-overlay.hidden { display: none; }

.ap-modal-card {
  background: rgba(10,22,40,.98);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 18px;
  width: 100%; max-width: 520px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.ap-modal-sm { max-width: 360px; padding: 36px 28px; text-align: center; }
.ap-modal-hdr {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px 0;
}
.ap-modal-hdr h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 400; }
.ap-modal-close {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,.2);
  background: none; color: rgba(255,255,255,.4);
  cursor: pointer; font-size: .8rem;
  display: flex; align-items: center; justify-content: center;
  transition: color .2s;
}
.ap-modal-close:hover { color: #e05c6a; }

.ap-upload-zone {
  margin: 16px 24px 0;
  border: 2px dashed rgba(201,168,76,.2);
  border-radius: 12px; padding: 24px;
  text-align: center; cursor: pointer;
  transition: border-color .2s, background .2s;
  color: rgba(255,255,255,.5); font-size: .8rem;
}
.ap-upload-zone:hover, .ap-upload-zone.drag-over {
  border-color: rgba(201,168,76,.5); background: rgba(201,168,76,.04);
}
.ap-upload-ico { font-size: 1.8rem; color: var(--gold); display: block; margin-bottom: 6px; }
.ap-upload-zone small { font-size: .7rem; color: rgba(255,255,255,.3); display: block; margin-top: 3px; }

.ap-img-previews { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 24px; margin-top: 10px; }
.ap-prev-item { position: relative; width: 64px; height: 64px; border-radius: 8px; overflow: hidden; border: 1px solid rgba(201,168,76,.2); }
.ap-prev-item img { width: 100%; height: 100%; object-fit: cover; }
.ap-prev-item button {
  position: absolute; top: 2px; right: 2px;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(224,92,106,.9); border: none;
  color: #fff; font-size: .5rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

.ap-modal-fields { padding: 14px 24px 0; }
.ap-fields-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ap-field-group { margin-bottom: 12px; }
.ap-field-group label {
  display: block; font-size: .68rem; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 6px;
}
.ap-field-group input,
.ap-field-group textarea {
  width: 100%; background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.18); border-radius: 8px;
  color: #fff; font-family: 'Montserrat', sans-serif;
  font-size: .84rem; padding: 10px 14px; outline: none;
  transition: border-color .2s;
}
.ap-field-group input:focus, .ap-field-group textarea:focus { border-color: rgba(201,168,76,.45); }
.ap-field-group textarea { resize: vertical; }

.ap-modal-footer { display: flex; gap: 8px; justify-content: flex-end; padding: 16px 24px 24px; }
.ap-btn-cancel {
  padding: 9px 18px; border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; background: none; color: rgba(255,255,255,.4);
  font-family: 'Montserrat', sans-serif; font-size: .75rem; font-weight: 600;
  cursor: pointer; transition: color .2s;
}
.ap-btn-cancel:hover { color: #fff; }
.ap-btn-save {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border: none; border-radius: 8px;
  color: #07121f; font-family: 'Montserrat', sans-serif;
  font-size: .75rem; font-weight: 700; letter-spacing: .06em;
  cursor: pointer; transition: opacity .2s;
}
.ap-btn-save:hover:not(:disabled) { opacity: .9; }
.ap-btn-save:disabled { opacity: .6; cursor: not-allowed; }
.ap-btn-danger {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 18px;
  background: rgba(224,92,106,.12);
  border: 1px solid rgba(224,92,106,.3);
  border-radius: 8px; color: #e05c6a;
  font-family: 'Montserrat', sans-serif; font-size: .75rem; font-weight: 700;
  cursor: pointer; transition: background .2s;
}
.ap-btn-danger:hover:not(:disabled) { background: rgba(224,92,106,.22); }
.ap-btn-danger:disabled { opacity: .5; cursor: not-allowed; }
.ap-btn-spin {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.3); border-top-color: #fff;
  border-radius: 50%; animation: apSpin .7s linear infinite;
  display: inline-block;
}

.ap-del-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(224,92,106,.1); border: 1px solid rgba(224,92,106,.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.4rem; color: #e05c6a;
}
.ap-modal-sm h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 400; margin-bottom: 8px; }
.ap-modal-sm p { color: rgba(255,255,255,.5); font-size: .8rem; line-height: 1.6; margin-bottom: 4px; }

/* Toast */
.ap-toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(13,26,48,.98);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 30px; padding: 10px 22px;
  font-size: .78rem; color: #fff;
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
  white-space: nowrap; z-index: 9999;
}
.ap-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.ap-toast.error { border-color: rgba(224,92,106,.4); color: #e05c6a; }
.ap-toast.info  { border-color: rgba(255,255,255,.15); }

/* Admin responsive */
/* ── Boutique image carousel ──────────────────────────────── */
.bq-slider {
  display: flex;
  height: 100%;
  transition: transform .35s ease;
  will-change: transform;
}
.bq-slider .boutique-img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bq-arr {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(5,12,24,.75);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold);
  width: 30px; height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 11px;
  display: flex; align-items: center; justify-content: center;
  z-index: 4;
  opacity: 0;
  transition: opacity .2s, background .2s;
  padding: 0;
}
.boutique-card:hover .bq-arr { opacity: 1; }
.bq-arr:hover { background: rgba(201,168,76,.25); }
.bq-arr-l { left: 8px; }
.bq-arr-r { right: 8px; }
.bq-dots {
  position: absolute;
  bottom: 8px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 5px;
  z-index: 4;
  pointer-events: none;
}
.bq-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  transition: background .2s, transform .2s;
}
.bq-dot.active { background: var(--gold); transform: scale(1.4); }
/* On mobile, always show arrows if card is touched */
@media (hover: none) {
  .bq-arr { opacity: 1; }
}

@media (max-width: 640px) {
  /* Admin bar — compact icon mode */
  .admin-bar {
    padding: 0 12px;
    gap: 0;
    justify-content: space-between;
    height: 48px;
  }
  body.admin-mode { padding-top: 48px; }
  body.admin-mode .header { top: 48px; }

  .ab-left { flex-shrink: 0; }
  .ab-center { flex: 0; gap: 6px; }
  .ab-right { flex-shrink: 0; }

  /* Hide button text labels — icons only for buttons */
  .ab-btn-txt  { display: none; }

  /* Bigger touch targets for icons */
  .ab-badge { padding: 6px 10px; font-size: .7rem; border-radius: 6px; }
  .ab-btn   { padding: 8px 14px; gap: 0; border-radius: 8px; }
  .ab-btn i { font-size: 1rem; }
  .ab-quit  { padding: 8px 12px; gap: 0; margin-left: 0; border-radius: 8px; }
  .ab-quit i { font-size: 1rem; }
}

@media (max-width: 480px) {
  .side-panel { width: 100vw; }
  .ap-fields-row { grid-template-columns: 1fr; }
}

/* Brand name hidden on very small phones to make room for Réserver button */
@media (max-width: 380px) {
  .brand-name { display: none; }
}

