/* ===========================================================
   BARBERZ DEN — Luxury grooming, Kiara WA
   Matte black + metallic gold. Mobile-first, performance-aware.
   =========================================================== */

:root {
  --black: #0a0a0a;
  --black-2: #060606;
  --black-3: #111114;
  --ink: #15151a;
  --line: rgba(201, 161, 74, 0.18);
  --gold: #c9a14a;
  --gold-2: #e7cd8a;
  --gold-3: #a9842f;
  --gold-grad: linear-gradient(135deg, #a9842f 0%, #e7cd8a 45%, #c9a14a 70%, #f3e3b3 100%);
  --cream: #f4efe6;
  --muted: #b9b4ab;
  --muted-2: #837f78;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-line: rgba(255, 255, 255, 0.08);
  --shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.9);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --cond: "Bebas Neue", Impact, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
  letter-spacing: 0.01em;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: #000; }

.wrap { width: min(1200px, 92vw); margin-inline: auto; }
.eyebrow {
  font-family: var(--cond);
  letter-spacing: 0.42em;
  font-size: 0.82rem;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; }
.section-title { font-size: clamp(2.1rem, 5.5vw, 4rem); margin: 0.4rem 0 1rem; }
.section-lead { color: var(--muted); max-width: 60ch; font-size: 1.05rem; }
section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }

/* ---------- Loading screen ---------- */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black-2);
  display: grid; place-items: center;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
#loader.done { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-mark {
  font-family: var(--cond); font-size: clamp(2.6rem, 9vw, 5rem);
  letter-spacing: 0.3em; color: var(--cream); padding-left: 0.3em;
}
.loader-bar {
  width: 200px; height: 2px; background: rgba(255,255,255,0.1);
  margin: 1.4rem auto 0; overflow: hidden; border-radius: 2px;
}
.loader-bar span { display: block; height: 100%; width: 0; background: var(--gold-grad); transition: width 0.2s linear; }
.loader-scissor { font-size: 1.4rem; color: var(--gold); margin-bottom: 0.6rem; animation: snip 1.1s var(--ease) infinite; }
@keyframes snip { 0%,100% { transform: rotate(-12deg);} 50% { transform: rotate(8deg);} }

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9000; border-radius: 50%; mix-blend-mode: difference; }
.cursor-dot { width: 7px; height: 7px; background: var(--gold-2); transform: translate(-50%,-50%); }
.cursor-ring { width: 38px; height: 38px; border: 1px solid rgba(231,205,138,0.6); transform: translate(-50%,-50%); transition: width .25s, height .25s, opacity .25s; }
.cursor-ring.hot { width: 60px; height: 60px; opacity: 0.6; }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ---------- Particles ---------- */
#particles { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5; }

/* ---------- Nav ---------- */
header.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1.1rem, 4vw, 3rem);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
header.nav.scrolled {
  background: rgba(8,8,9,0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
  padding-top: 0.8rem; padding-bottom: 0.8rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; font-family: var(--cond); letter-spacing: 0.22em; font-size: 1.25rem; }
.brand .pole { width: 12px; height: 30px; border-radius: 6px; background: repeating-linear-gradient(45deg, var(--gold) 0 6px, #1a1a1a 6px 12px); box-shadow: 0 0 14px rgba(201,161,74,0.5); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-size: 0.86rem; letter-spacing: 0.04em; color: var(--muted); transition: color 0.25s; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0; background: var(--gold-grad); transition: width 0.3s var(--ease); }
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-family: var(--cond); letter-spacing: 0.12em; font-size: 0.95rem;
  padding: 0.62rem 1.3rem; border-radius: 50px; color: #1a1404 !important;
  background: var(--gold-grad); box-shadow: 0 6px 24px -6px rgba(201,161,74,0.6);
}
.nav-toggle { display: none; background: none; border: 0; color: var(--cream); font-size: 1.6rem; cursor: pointer; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--cond); letter-spacing: 0.12em; font-size: 1.05rem;
  padding: 1rem 2rem; border-radius: 50px; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
}
.btn-gold { background: var(--gold-grad); color: #1a1404; box-shadow: 0 10px 34px -10px rgba(201,161,74,0.7); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 44px -12px rgba(201,161,74,0.85); }
.btn-ghost { background: var(--glass); border-color: var(--glass-line); color: var(--cream); backdrop-filter: blur(8px); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--gold); }

/* ---------- Hero ---------- */
.hero { min-height: 100svh; display: grid; align-items: center; overflow: hidden; padding-top: 6rem; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 70% 20%, rgba(201,161,74,0.16), transparent 55%),
    linear-gradient(180deg, rgba(6,6,8,0.78) 0%, rgba(6,6,8,0.55) 40%, rgba(6,6,8,0.92) 100%);
}
.hero-grain { position: absolute; inset: 0; z-index: -1; opacity: 0.05; pointer-events: none; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.hero-content { max-width: 920px; }
.hero h1 { font-size: clamp(2.8rem, 8vw, 6.4rem); margin: 1.1rem 0 1.2rem; }
.hero h1 .line { display: block; overflow: hidden; }
.hero p.sub { font-size: clamp(1.05rem, 2.4vw, 1.4rem); color: var(--cream); max-width: 38ch; margin-bottom: 2.2rem; opacity: 0.92; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-rating { margin-top: 2.4rem; display: flex; align-items: center; gap: 0.9rem; color: var(--muted); font-size: 0.92rem; }
.hero-rating .stars { color: var(--gold-2); letter-spacing: 0.15em; }
.scroll-hint { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); color: var(--muted-2); font-family: var(--cond); letter-spacing: 0.3em; font-size: 0.7rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.scroll-hint .dot { width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); animation: pulseDown 2s ease-in-out infinite; }
@keyframes pulseDown { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; } .reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; } .reveal.d4 { transition-delay: 0.32s; }

/* ---------- Stats / social proof ---------- */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(180deg, var(--black-2), var(--black)); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat .num { font-family: var(--cond); font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1; letter-spacing: 0.02em; }
.stat .label { color: var(--muted); font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 0.5rem; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.1rem; margin-top: 3rem; }
.svc-card {
  position: relative; padding: 1.7rem 1.5rem; border-radius: 18px;
  background: linear-gradient(160deg, var(--glass), rgba(255,255,255,0.01));
  border: 1px solid var(--glass-line); overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.svc-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(140% 100% at 0% 0%, rgba(201,161,74,0.14), transparent 50%); opacity: 0; transition: opacity 0.4s; }
.svc-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow); }
.svc-card:hover::before { opacity: 1; }
.svc-card .ico { font-size: 1.5rem; margin-bottom: 0.9rem; }
.svc-card h3 { font-family: var(--sans); font-weight: 600; font-size: 1.12rem; letter-spacing: 0; }
.svc-card p { color: var(--muted); font-size: 0.9rem; margin-top: 0.35rem; min-height: 2.4em; }
.svc-card .price { font-family: var(--cond); font-size: 1.5rem; color: var(--gold-2); margin-top: 0.9rem; letter-spacing: 0.04em; }
.svc-card .price small { font-size: 0.7rem; color: var(--muted-2); letter-spacing: 0.1em; }

/* ---------- Comparison slider ---------- */
.compare { position: relative; max-width: 760px; margin: 3rem auto 0; aspect-ratio: 4/5; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); user-select: none; }
.compare img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.compare .after-wrap { position: absolute; inset: 0; width: 50%; overflow: hidden; border-right: 2px solid var(--gold); }
.compare .after-wrap img { width: 760px; max-width: none; }
.compare .handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 44px; transform: translateX(-50%); cursor: ew-resize; display: grid; place-items: center; }
.compare .handle .grip { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-grad); display: grid; place-items: center; color: #1a1404; font-weight: 700; box-shadow: 0 6px 20px rgba(0,0,0,0.5); }
.compare .tag { position: absolute; bottom: 1rem; font-family: var(--cond); letter-spacing: 0.2em; font-size: 0.8rem; padding: 0.3rem 0.8rem; border-radius: 40px; background: rgba(0,0,0,0.55); backdrop-filter: blur(6px); }
.compare .tag.l { left: 1rem; } .compare .tag.r { right: 1rem; color: var(--gold-2); }

/* ---------- Why choose ---------- */
.why { background: linear-gradient(180deg, var(--black), var(--black-2)); }
.why-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; }
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem 1.6rem; margin-top: 2rem; }
.why-item { display: flex; gap: 0.85rem; align-items: flex-start; }
.why-item .tick { flex: none; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--glass); border: 1px solid var(--line); color: var(--gold-2); }
.why-item h4 { font-family: var(--sans); font-size: 1rem; font-weight: 600; }
.why-item p { color: var(--muted); font-size: 0.85rem; }
.why-photo { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 4/5; border: 1px solid var(--line); }
.why-photo img { width: 100%; height: 100%; object-fit: cover; }
.why-photo .badge { position: absolute; bottom: 1rem; left: 1rem; right: 1rem; padding: 1rem 1.2rem; border-radius: 14px; background: rgba(8,8,9,0.6); backdrop-filter: blur(14px); border: 1px solid var(--glass-line); }
.why-photo .badge strong { font-family: var(--cond); letter-spacing: 0.1em; font-size: 1.4rem; display: block; }

/* ---------- Testimonials ---------- */
.reviews { background: var(--black-2); }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.4rem; margin-top: 3rem; }
.review-card { padding: 2rem 1.8rem; border-radius: 18px; background: linear-gradient(160deg, var(--glass), rgba(255,255,255,0.01)); border: 1px solid var(--glass-line); }
.review-card .stars { color: var(--gold-2); letter-spacing: 0.18em; margin-bottom: 1rem; }
.review-card blockquote { font-family: var(--serif); font-size: 1.22rem; line-height: 1.5; font-style: italic; }
.review-card .who { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.4rem; }
.review-card .who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--gold-grad); display: grid; place-items: center; color: #1a1404; font-family: var(--cond); font-size: 1.1rem; }
.review-card .who .meta { font-size: 0.82rem; color: var(--muted); }
.review-card .who .meta b { color: var(--cream); display: block; font-size: 0.92rem; }

/* ---------- Booking band ---------- */
.book-band { background: var(--gold-grad); color: #16100200; position: relative; overflow: hidden; }
.book-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 140% at 80% 0%, rgba(255,255,255,0.35), transparent 50%); }
.book-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem; position: relative; }
.book-inner h2 { color: #1a1404; font-size: clamp(2rem, 5vw, 3.4rem); max-width: 14ch; }
.book-inner p { color: #3a2c08; max-width: 40ch; margin-top: 0.6rem; }
.book-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.book-actions .btn { box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5); }
.btn-dark { background: #0c0c0e; color: var(--gold-2); }
.btn-dark:hover { transform: translateY(-3px); }
.btn-wa { background: #1faf54; color: #fff; }
.btn-wa:hover { transform: translateY(-3px); }

/* ---------- Gallery / Instagram ---------- */
.gallery { columns: 4; column-gap: 12px; margin-top: 3rem; }
.gallery figure { break-inside: avoid; margin: 0 0 12px; position: relative; border-radius: 14px; overflow: hidden; cursor: pointer; border: 1px solid var(--glass-line); }
.gallery img { width: 100%; height: auto; transition: transform 0.6s var(--ease), filter 0.4s; filter: saturate(0.92); }
.gallery figure::after { content: "↗"; position: absolute; inset: 0; display: grid; place-items: center; font-size: 1.6rem; color: var(--gold-2); background: rgba(6,6,8,0.45); opacity: 0; transition: opacity 0.35s; }
.gallery figure:hover img { transform: scale(1.06); filter: saturate(1.1); }
.gallery figure:hover::after { opacity: 1; }
.ig-head { display: flex; align-items: center; gap: 1rem; justify-content: center; margin-top: 1.4rem; }
.ig-head a { font-family: var(--cond); letter-spacing: 0.12em; color: var(--gold-2); }

/* ---------- Lightbox ---------- */
#lightbox { position: fixed; inset: 0; z-index: 8000; background: rgba(4,4,6,0.94); display: none; place-items: center; padding: 4vw; }
#lightbox.open { display: grid; }
#lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 12px; box-shadow: var(--shadow); }
#lightbox .close { position: absolute; top: 1.4rem; right: 1.6rem; font-size: 2rem; color: var(--cream); cursor: pointer; background: none; border: 0; }

/* ---------- SEO content ---------- */
.seo { background: linear-gradient(180deg, var(--black-2), var(--black)); }
.seo-body { columns: 2; column-gap: 3rem; color: var(--muted); margin-top: 2rem; font-size: 0.98rem; }
.seo-body h3 { font-family: var(--sans); color: var(--cream); font-size: 1.05rem; margin: 1.4rem 0 0.5rem; }
.seo-body p { margin-bottom: 1rem; }
.seo-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.seo-tags span { font-size: 0.78rem; color: var(--muted); border: 1px solid var(--line); border-radius: 40px; padding: 0.35rem 0.9rem; }

/* ---------- Location ---------- */
.loc-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2.5rem; align-items: stretch; margin-top: 3rem; }
.loc-info .row { display: flex; gap: 0.9rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.loc-info .row .ico { color: var(--gold-2); font-size: 1.1rem; flex: none; width: 1.6rem; }
.loc-info .row b { display: block; font-size: 1.02rem; }
.loc-info .row span { color: var(--muted); font-size: 0.92rem; }
.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; padding: 0.4rem 0; color: var(--muted); border-bottom: 1px dashed rgba(255,255,255,0.06); font-size: 0.92rem; }
.hours-list li b { color: var(--cream); font-weight: 500; }
.hours-list li.today { color: var(--gold-2); }
.loc-map { border-radius: 20px; overflow: hidden; border: 1px solid var(--line); min-height: 380px; }
.loc-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: invert(0.9) hue-rotate(180deg) saturate(0.7) brightness(0.9); }

/* ---------- Floating actions ---------- */
.float-wa, .float-book { position: fixed; z-index: 1200; display: inline-flex; align-items: center; gap: 0.55rem; border-radius: 50px; font-family: var(--cond); letter-spacing: 0.08em; box-shadow: 0 12px 34px -8px rgba(0,0,0,0.6); transition: transform 0.3s var(--ease); }
.float-wa { right: 1.1rem; bottom: 1.1rem; background: #1faf54; color: #fff; padding: 0.85rem 1.2rem; font-size: 1rem; }
.float-wa svg { width: 22px; height: 22px; }
.float-wa:hover, .float-book:hover { transform: translateY(-3px) scale(1.03); }
.float-wa .pulse { position: absolute; inset: 0; border-radius: 50px; box-shadow: 0 0 0 0 rgba(31,175,84,0.6); animation: waPulse 2.4s infinite; }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(31,175,84,0.5);} 70% { box-shadow: 0 0 0 16px rgba(31,175,84,0);} 100% { box-shadow: 0 0 0 0 rgba(31,175,84,0);} }
.mobile-callbar { display: none; }

/* ---------- Footer ---------- */
footer { background: var(--black-2); border-top: 1px solid var(--line); padding: 4rem 0 2rem; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.foot-grid h4 { font-family: var(--cond); letter-spacing: 0.18em; color: var(--gold-2); font-size: 0.95rem; margin-bottom: 1.1rem; }
.foot-grid a, .foot-grid p { color: var(--muted); font-size: 0.9rem; display: block; margin-bottom: 0.55rem; transition: color 0.25s; }
.foot-grid a:hover { color: var(--gold-2); }
.foot-brand .brand { margin-bottom: 1rem; }
.foot-brand p { max-width: 34ch; }
.foot-bottom { border-top: 1px solid var(--line); margin-top: 3rem; padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; color: var(--muted-2); font-size: 0.8rem; }

/* ---------- Exit intent ---------- */
#exit-modal { position: fixed; inset: 0; z-index: 8500; background: rgba(4,4,6,0.85); display: none; place-items: center; padding: 6vw; backdrop-filter: blur(6px); }
#exit-modal.open { display: grid; }
.exit-card { max-width: 460px; text-align: center; padding: 3rem 2.4rem; border-radius: 22px; background: linear-gradient(160deg, var(--ink), var(--black-2)); border: 1px solid var(--gold); box-shadow: var(--shadow); position: relative; }
.exit-card .eyebrow { margin-bottom: 0.6rem; }
.exit-card h3 { font-size: 2rem; margin-bottom: 0.7rem; }
.exit-card p { color: var(--muted); margin-bottom: 1.6rem; }
.exit-card .offer { font-family: var(--cond); font-size: 3rem; letter-spacing: 0.04em; margin: 0.4rem 0 1.2rem; }
.exit-card .close { position: absolute; top: 0.8rem; right: 1.1rem; background: none; border: 0; color: var(--muted); font-size: 1.6rem; cursor: pointer; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .why-layout, .loc-layout { grid-template-columns: 1fr; }
  .gallery { columns: 3; }
  .seo-body { columns: 1; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links { position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px); flex-direction: column; justify-content: center; gap: 1.6rem; background: rgba(8,8,9,0.97); backdrop-filter: blur(20px); transform: translateX(100%); transition: transform 0.45s var(--ease); padding: 2rem; border-left: 1px solid var(--line); }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 1.1rem; }
  .nav-toggle { display: block; z-index: 1001; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
  .gallery { columns: 2; }
  .compare .after-wrap img { width: 92vw; }
  .float-wa { bottom: 4.4rem; }
  .mobile-callbar { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200; }
  .mobile-callbar a { flex: 1; text-align: center; padding: 0.95rem; font-family: var(--cond); letter-spacing: 0.1em; font-size: 1rem; }
  .mobile-callbar .call { background: #0c0c0e; color: var(--gold-2); border-top: 1px solid var(--line); }
  .mobile-callbar .book { background: var(--gold-grad); color: #1a1404; }
  .foot-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .book-inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
