/* =========================================================
   FOREVER FOR YOU — Salon de beauté, Agadir
   Palette : Noir profond + Rose gold / cuivre
   ========================================================= */

:root {
  --bg:        #0d0c0c;
  --bg-2:      #141212;
  --panel:     #1a1717;
  --panel-2:   #211d1c;
  --line:      rgba(214, 170, 130, 0.16);
  --cream:     #f4ede6;
  --muted:     #b1a79d;
  --muted-2:   #8a8079;

  --gold:      #d3a374;
  --gold-soft: #e6c6a3;
  --gold-deep: #a9743f;
  --gold-grad: linear-gradient(135deg, #f0d3b3 0%, #d3a374 42%, #a9743f 100%);

  --header-bg:       rgba(13, 12, 12, .82);
  --header-bg-solid: rgba(13, 12, 12, .97);
  --glass:           rgba(20, 18, 18, .72);
  --dot:             rgba(255, 255, 255, .05);

  --maxw: 1180px;
  --radius: 18px;
  --shadow: 0 24px 60px -30px rgba(0,0,0,.85);
  --ease: cubic-bezier(.22,.61,.36,1);

  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Jost", "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ---- Light theme ---- */
:root[data-theme="light"] {
  --bg:        #faf6f1;
  --bg-2:      #f2eae1;
  --panel:     #ffffff;
  --panel-2:   #f7f0e8;
  --line:      rgba(169, 116, 63, 0.22);
  --cream:     #2c2521;
  --muted:     #6d635b;
  --muted-2:   #a2978d;

  --gold:      #a9743f;
  --gold-soft: #96652f;
  --gold-deep: #7f5527;
  --gold-grad: linear-gradient(135deg, #c99b68 0%, #b07d47 45%, #935f2f 100%);

  --shadow: 0 22px 50px -28px rgba(120, 82, 45, .40);
  --header-bg:       rgba(250, 246, 241, .85);
  --header-bg-solid: rgba(250, 246, 241, .98);
  --glass:           rgba(255, 255, 255, .82);
  --dot:             rgba(120, 90, 60, .07);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: .2px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background-color .45s var(--ease), color .45s var(--ease);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---- Typographic helpers ---- */
.eyebrow {
  font-size: .72rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}
.script {
  font-family: var(--font-display);
  font-style: italic;
}
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; }

.section { padding: 108px 0; position: relative; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 62px; }
.section-head h2 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); margin: 16px 0 14px; letter-spacing: .5px; }
.section-head p { color: var(--muted); font-size: 1.02rem; }

.divider {
  width: 62px; height: 1px; margin: 0 auto;
  background: var(--gold-grad);
  position: relative;
}
.divider::before,
.divider::after {
  content: ""; position: absolute; top: 50%; width: 5px; height: 5px;
  border-radius: 50%; background: var(--gold); transform: translateY(-50%);
}
.divider::before { left: -14px; }
.divider::after { right: -14px; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 400;
  font-size: .82rem; letter-spacing: .22em; text-transform: uppercase;
  padding: 16px 34px; border-radius: 100px; cursor: pointer;
  border: 1px solid transparent; transition: all .4s var(--ease);
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--gold-grad); color: #241608;
  box-shadow: 0 14px 34px -14px rgba(211,163,116,.7);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -14px rgba(211,163,116,.85); }
.btn-ghost {
  background: transparent; color: var(--cream);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); transform: translateY(-3px); }

/* =========================================================
   Header / Nav
   ========================================================= */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .5s var(--ease), padding .5s var(--ease), border-color .5s;
  padding: 22px 0; border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: var(--header-bg);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  padding: 12px 0; border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand img { width: 42px; height: 42px; border-radius: 10px; object-fit: cover; box-shadow: 0 6px 18px -6px rgba(0,0,0,.7); }
.brand-name { font-family: var(--font-display); font-size: 1.28rem; font-weight: 600; letter-spacing: 2px; line-height: 1; }
.brand-name small { display: block; font-family: var(--font-body); font-size: .55rem; letter-spacing: .5em; color: var(--gold); font-weight: 400; margin-top: 4px; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); font-weight: 400; position: relative; padding: 4px 0;
  transition: color .3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -3px; width: 0; height: 1px;
  background: var(--gold-grad); transition: width .35s var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.theme-toggle {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  border: 1px solid var(--line); background: transparent; color: var(--cream);
  display: grid; place-items: center; cursor: pointer; transition: all .35s var(--ease);
}
.theme-toggle:hover { border-color: var(--gold); color: var(--gold-soft); transform: translateY(-2px); }
.theme-toggle svg { width: 19px; height: 19px; }
.theme-toggle .ic-moon { display: none; }
.theme-toggle .ic-sun { display: block; }
:root[data-theme="light"] .theme-toggle .ic-sun { display: none; }
:root[data-theme="light"] .theme-toggle .ic-moon { display: block; }
.burger {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px;
}
.burger span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; padding: 140px 0 90px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse 80% 60% at 78% 18%, rgba(211,163,116,.18), transparent 60%),
    radial-gradient(ellipse 70% 55% at 12% 88%, rgba(169,116,63,.15), transparent 60%),
    var(--bg);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, var(--dot) 1px, transparent 0);
  background-size: 42px 42px; opacity: .5;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.hero-copy .eyebrow { margin-bottom: 22px; display: inline-block; }
.hero-title { font-size: clamp(2.9rem, 6.2vw, 5.2rem); letter-spacing: .5px; margin-bottom: 8px; }
.hero-title .script { display: block; font-weight: 500; }
.hero-sub {
  color: var(--muted); font-size: 1.08rem; max-width: 460px; margin: 26px 0 38px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px 8px; margin-top: 42px; }
.hero-tags span {
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
  border: 1px solid var(--line); padding: 8px 16px; border-radius: 100px;
}

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-logo-card {
  position: relative; width: min(420px, 92%); aspect-ratio: 1/1.04;
  border-radius: 28px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: rotate(0deg);
}
.hero-logo-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-logo-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(13,12,12,.55));
}
.hero-badge {
  position: absolute; z-index: 3;
  background: var(--glass); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: 16px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow);
}
.hero-badge .num { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; line-height: 1; }
.hero-badge .lbl { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.hero-badge.b1 { top: 8%; left: -6%; }
.hero-badge.b2 { bottom: 6%; right: -5%; }

.scroll-hint {
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted-2); font-size: .64rem; letter-spacing: .3em; text-transform: uppercase;
}
.scroll-hint .mouse {
  width: 22px; height: 36px; border: 1px solid var(--line); border-radius: 12px; position: relative;
}
.scroll-hint .mouse::after {
  content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; border-radius: 2px; background: var(--gold);
  animation: wheel 1.6s infinite;
}
@keyframes wheel { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 100%{opacity:0;transform:translate(-50%,12px)} }

/* =========================================================
   Marquee strip
   ========================================================= */
.strip {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 22px 0; overflow: hidden; background: var(--bg-2);
}
.marquee { display: flex; gap: 56px; width: max-content; animation: scrollx 28s linear infinite; }
.marquee span {
  font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--muted);
  display: flex; align-items: center; gap: 56px; white-space: nowrap;
}
.marquee span::after { content: "✦"; color: var(--gold); font-style: normal; font-size: .9rem; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* =========================================================
   About
   ========================================================= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-copy .eyebrow { display: inline-block; margin-bottom: 18px; }
.about-copy h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 22px; }
.about-copy p { color: var(--muted); margin-bottom: 18px; }
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 34px; }
.about-stats .stat { border: 1px solid var(--line); border-radius: 14px; padding: 20px 16px; text-align: center; background: var(--panel); }
.about-stats .num { font-family: var(--font-display); font-size: 2.1rem; font-weight: 600; }
.about-stats .lbl { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

.about-visual { position: relative; }
.about-photo { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); margin-bottom: 18px; aspect-ratio: 16/11; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-panel {
  border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(211,163,116,.22), transparent 55%),
    var(--panel-2);
  padding: 46px 38px; box-shadow: var(--shadow); position: relative;
}
.about-panel h3 { font-size: 1.8rem; margin-bottom: 12px; }
.about-panel .quote { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--cream); line-height: 1.4; }
.about-panel .sig { margin-top: 26px; color: var(--gold); letter-spacing: .1em; font-size: .82rem; text-transform: uppercase; }
.about-panel .qmark { font-family: var(--font-display); font-size: 6rem; color: var(--gold); opacity: .25; line-height: .5; }

/* =========================================================
   Services
   ========================================================= */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.service-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px;
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  transition: transform .45s var(--ease), border-color .45s, box-shadow .45s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .45s;
  background: radial-gradient(ellipse at 50% 0%, rgba(211,163,116,.14), transparent 60%);
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(211,163,116,.42); box-shadow: var(--shadow); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 58px; height: 58px; border-radius: 14px; display: grid; place-items: center;
  border: 1px solid var(--line); margin-bottom: 22px; color: var(--gold);
  background: rgba(211,163,116,.06);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: .95rem; margin-bottom: 18px; }
.service-card .from {
  font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 8px;
}

/* =========================================================
   Video
   ========================================================= */
.video-section { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.video-frame {
  position: relative; border-radius: 22px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow); max-width: 960px; margin: 0 auto; background: #000;
  aspect-ratio: 16/9;
}
.video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-frame .poster {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: opacity .4s; z-index: 2;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(211,163,116,.25), transparent 60%),
    linear-gradient(180deg, rgba(13,12,12,.35), rgba(13,12,12,.72)),
    #100e0e;
}
.video-frame .poster img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.play-btn {
  position: relative; z-index: 2; width: 88px; height: 88px; border-radius: 50%;
  background: var(--gold-grad); display: grid; place-items: center; color: #241608;
  box-shadow: 0 20px 50px -16px rgba(211,163,116,.8); transition: transform .3s;
}
.play-btn svg { width: 30px; height: 30px; margin-left: 4px; }
.video-frame .poster:hover .play-btn { transform: scale(1.08); }
.play-btn::after {
  content: ""; position: absolute; inset: -10px; border-radius: 50%;
  border: 1px solid rgba(211,163,116,.4); animation: pulse 2.2s infinite;
}
@keyframes pulse { 0%{transform:scale(1);opacity:.8} 100%{transform:scale(1.5);opacity:0} }
.video-caption { position: absolute; left: 26px; bottom: 22px; z-index: 3; }
.video-caption small { color: var(--gold); letter-spacing: .2em; text-transform: uppercase; font-size: .68rem; }
.video-caption h3 { font-size: 1.5rem; }

/* =========================================================
   Galerie (photos réelles du salon)
   ========================================================= */
.gallery { background: var(--bg); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item {
  position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 3/4;
  border: 1px solid var(--line); cursor: pointer; box-shadow: var(--shadow);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0; opacity: .35; transition: opacity .4s;
  background: linear-gradient(180deg, transparent 45%, rgba(13,12,12,.75));
}
.gallery-item:hover::after { opacity: .55; }
.gallery-item .cap {
  position: absolute; left: 16px; bottom: 14px; z-index: 2; color: #fff;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 500;
  letter-spacing: .3px; text-shadow: 0 2px 10px rgba(0,0,0,.5);
}
.gallery-item .zoom {
  position: absolute; top: 14px; right: 14px; z-index: 2; width: 34px; height: 34px;
  border-radius: 50%; background: var(--glass); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25); display: grid; place-items: center; color: #fff;
  opacity: 0; transform: scale(.8); transition: all .35s var(--ease);
}
.gallery-item:hover .zoom { opacity: 1; transform: scale(1); }
.gallery-item .zoom svg { width: 16px; height: 16px; }

/* =========================================================
   Vidéos (galerie, chargement à la demande)
   ========================================================= */
.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.video-card {
  position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 3/4;
  border: 1px solid var(--line); background: #000; cursor: pointer; box-shadow: var(--shadow);
}
.video-card > img.vposter { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.video-card:hover > img.vposter { transform: scale(1.05); }
.video-card video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #000; z-index: 3; }
.video-card .overlay {
  position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
  background: linear-gradient(180deg, rgba(13,12,12,.15), rgba(13,12,12,.55));
  transition: opacity .3s;
}
.video-card .vplay {
  width: 62px; height: 62px; border-radius: 50%; background: var(--gold-grad); color: #241608;
  display: grid; place-items: center; box-shadow: 0 14px 34px -12px rgba(211,163,116,.8);
  transition: transform .3s;
}
.video-card:hover .vplay { transform: scale(1.1); }
.video-card .vplay svg { width: 24px; height: 24px; margin-left: 3px; }
.video-card .vlabel {
  position: absolute; left: 16px; bottom: 14px; z-index: 2; color: #fff;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; text-shadow: 0 2px 10px rgba(0,0,0,.6);
}

/* =========================================================
   Tarifs
   ========================================================= */
.tarifs { background: var(--bg); }
.tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 48px;
}
.tab {
  font-family: var(--font-body); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  padding: 12px 22px; border-radius: 100px; border: 1px solid var(--line); background: transparent;
  color: var(--muted); cursor: pointer; transition: all .35s var(--ease); font-weight: 400;
}
.tab:hover { color: var(--cream); border-color: rgba(211,163,116,.4); }
.tab.active { background: var(--gold-grad); color: #241608; border-color: transparent; }

.price-panel { display: none; animation: fade .5s var(--ease); }
.price-panel.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.price-list {
  max-width: 860px; margin: 0 auto;
  columns: 2; column-gap: 46px;
}
.price-row {
  break-inside: avoid; display: flex; align-items: baseline; gap: 12px;
  padding: 15px 0; border-bottom: 1px dashed var(--line);
}
.price-row .name { font-size: 1.02rem; color: var(--cream); font-weight: 300; }
.price-row .dots { flex: 1; border-bottom: 1px dotted rgba(177,167,157,.28); transform: translateY(-4px); }
.price-row .price { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--gold-soft); white-space: nowrap; }
.price-row .price small { font-family: var(--font-body); font-size: .62rem; letter-spacing: .1em; color: var(--muted); text-transform: uppercase; }
.price-note { text-align: center; margin-top: 40px; color: var(--muted-2); font-size: .86rem; }
.price-note .dh { color: var(--gold); }

/* =========================================================
   Avis
   ========================================================= */
.avis { background: var(--bg-2); border-top: 1px solid var(--line); }
.avis-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.avis-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px;
  background: var(--panel); position: relative;
}
.avis-card .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; font-size: .95rem; }
.avis-card p { color: var(--cream); font-family: var(--font-display); font-style: italic; font-size: 1.28rem; line-height: 1.45; margin-bottom: 22px; }
.avis-card .who { display: flex; align-items: center; gap: 12px; }
.avis-card .av {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: var(--gold-grad); color: #241608; font-weight: 600; font-family: var(--font-display); font-size: 1.1rem;
}
.avis-card .who .n { font-size: .92rem; }
.avis-card .who .d { font-size: .72rem; color: var(--muted); }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band { padding: 96px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse 60% 90% at 50% 0%, rgba(211,163,116,.2), transparent 60%), var(--bg);
}
.cta-band h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 16px 0 20px; }
.cta-band p { color: var(--muted); max-width: 520px; margin: 0 auto 34px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   Contact / Footer
   ========================================================= */
.contact { background: var(--bg-2); border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; }
.contact-info h2 { font-size: clamp(2rem,4vw,2.8rem); margin-bottom: 24px; }
.info-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-row .ic { width: 44px; height: 44px; flex: none; border-radius: 12px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold); }
.info-row .ic svg { width: 20px; height: 20px; }
.info-row .t { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.info-row .v { color: var(--cream); font-size: 1rem; }
.info-row a.v:hover { color: var(--gold-soft); }
.hours-list { margin-top: 6px; }
.hours-list .h { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: .92rem; }
.hours-list .h span:last-child { color: var(--gold-soft); }

.map-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); min-height: 320px; height: 100%; background: var(--panel); }
.map-card iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(.3) contrast(1.05); }

.footer { padding: 62px 0 30px; border-top: 1px solid var(--line); background: var(--bg); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 46px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { color: var(--muted); font-size: .92rem; max-width: 300px; }
.footer-col h4 { font-family: var(--font-body); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; font-weight: 500; }
.footer-col a { display: block; color: var(--muted); font-size: .92rem; padding: 6px 0; transition: color .3s; }
.footer-col a:hover { color: var(--cream); }
.socials { display: flex; gap: 12px; margin-top: 22px; }
.socials a {
  width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--muted); transition: all .35s var(--ease);
}
.socials a:hover { color: #241608; background: var(--gold-grad); border-color: transparent; transform: translateY(-3px); }
.socials svg { width: 19px; height: 19px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 26px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: .82rem; flex-wrap: wrap; }
.footer-bottom a { color: var(--gold-soft); }
.footer-bottom a:hover { color: var(--gold); }

/* Floating booking — WhatsApp green */
.float-book {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #25d366 0%, #1ebe5b 55%, #128c7e 100%); color: #ffffff;
  padding: 14px 22px; border-radius: 100px;
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 500;
  box-shadow: 0 16px 40px -14px rgba(37,211,102,.7); transition: transform .3s;
}
.float-book:hover { transform: translateY(-3px) scale(1.03); }
.float-book svg { width: 18px; height: 18px; }

/* =========================================================
   Hero slider (photo carousel)
   ========================================================= */
.hero-slider-section { padding: 26px 0 6px; background: var(--bg); }
.hero-slider {
  position: relative; max-width: 1320px; margin: 0 auto; padding: 0 clamp(14px, 4vw, 46px);
}
.hs-track {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 6px 2px 4px; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.hs-track::-webkit-scrollbar { display: none; }
.hs-slide {
  flex: 0 0 auto; width: clamp(180px, 22vw, 236px); aspect-ratio: 9 / 16;
  scroll-snap-align: center; margin: 0; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--panel);
  position: relative;
}
.hs-slide img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s var(--ease); filter: saturate(1.02);
}
.hs-slide:hover img { transform: scale(1.06); }
.hs-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--glass); backdrop-filter: blur(12px); color: var(--gold);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  box-shadow: var(--shadow); transition: transform .25s var(--ease), background .25s, opacity .25s;
}
.hs-arrow svg { width: 22px; height: 22px; }
.hs-arrow:hover { background: var(--gold-grad); color: #241608; transform: translateY(-50%) scale(1.08); }
.hs-prev { left: clamp(2px, 1vw, 10px); }
.hs-next { right: clamp(2px, 1vw, 10px); }
.hs-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.hs-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0; cursor: pointer;
  background: var(--line); transition: transform .25s var(--ease), background .25s;
}
.hs-dots button.active { background: var(--gold); transform: scale(1.5); }

/* Reveal on scroll (only when JS is active — content stays visible if JS fails) */
.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .nav-links, .nav-cta .btn { display: none; }
  .burger { display: flex; }
  .nav-links.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    background: var(--header-bg-solid); backdrop-filter: blur(18px); padding: 26px 24px; gap: 6px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open a { padding: 12px 0; font-size: .9rem; border-bottom: 1px solid var(--line); }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-badge.b1 { left: 2%; } .hero-badge.b2 { right: 2%; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .avis-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .section { padding: 76px 0; }
  .wrap { padding: 0 18px; }
  .services-grid { grid-template-columns: 1fr; }
  .price-list { columns: 1; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-badge { display: none; }
  .float-book span { display: none; }
  .float-book { padding: 15px; }
}
