/* ===== The Makeoverhouse — Salon & Barber Shop ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --gold: #c9a84c;
  --gold-muted: #a07830;
  --gold-soft: rgba(201,168,76,0.12);
  --dark: #080808;
  --dark-2: #111111;
  --glass-bg: rgba(255,255,255,0.03);
  --glass-border: rgba(255,255,255,0.08);
  --w70: rgba(255,255,255,0.70);
  --w60: rgba(255,255,255,0.60);
  --w50: rgba(255,255,255,0.50);
  --w40: rgba(255,255,255,0.40);
  --w30: rgba(255,255,255,0.30);
  --w20: rgba(255,255,255,0.20);
  --w10: rgba(255,255,255,0.10);
  --w05: rgba(255,255,255,0.05);
  --green: #4ade80;
  --rose: #f9a8d4;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--dark); color: #fff; overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }

/* ===== Utilities ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

.glass-panel { background: var(--glass-bg); border: 1px solid var(--glass-border); backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px); }

.sub-label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }

.section-title { font-family: 'Playfair Display', serif; font-size: clamp(36px, 5vw, 60px); font-weight: 500; letter-spacing: -0.01em; line-height: 1.05; margin-bottom: 24px; text-transform: uppercase; }

.text-glow { text-shadow: 0 0 40px rgba(201,168,76,0.2); }

/* Luxury button */
.btn-luxury { position: relative; display: inline-flex; align-items: center; justify-content: center; padding: 18px 40px; border: 1px solid rgba(201,168,76,0.35); overflow: hidden; transition: border-color 0.5s; cursor: pointer; }
.btn-luxury::before { content: ''; position: absolute; inset: 0; background: rgba(201,168,76,0.1); transform: translateX(-100%); transition: transform 0.5s ease-out; }
.btn-luxury:hover { border-color: var(--gold); }
.btn-luxury:hover::before { transform: translateX(0); }
.btn-luxury span { position: relative; z-index: 1; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }

/* Image reveal */
.img-reveal { position: relative; overflow: hidden; }
.img-reveal img { transition: transform 0.7s ease-out; transform: scale(1.08); }
.img-reveal:hover img { transform: scale(1); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: opacity 1.2s cubic-bezier(0.16,1,0.3,1), transform 1.2s cubic-bezier(0.16,1,0.3,1); }
.reveal-left.in { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(60px); transition: opacity 1.2s cubic-bezier(0.16,1,0.3,1), transform 1.2s cubic-bezier(0.16,1,0.3,1); }
.reveal-right.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; } .d5 { transition-delay: 0.5s; } .d6 { transition-delay: 0.6s; }

.no-scroll::-webkit-scrollbar { display: none; }
.no-scroll { -ms-overflow-style: none; scrollbar-width: none; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.1); }
::-webkit-scrollbar-thumb:hover { background: rgba(201,168,76,0.3); }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: none; }
}
.hero__content { animation: heroFadeUp 1.2s cubic-bezier(0.16,1,0.3,1) 0.15s both; }

/* Status badge */
.status-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
}
.status-badge--open  { background: rgba(74,222,128,0.1); color: #4ade80; border: 1px solid rgba(74,222,128,0.25); }
.status-badge--closed { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.35); border: 1px solid rgba(255,255,255,0.08); }
.status-badge .dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.status-badge--open  .dot { background: #4ade80; box-shadow: 0 0 8px rgba(74,222,128,0.6); animation: statusPulse 2s ease-in-out infinite; }
.status-badge--closed .dot { background: rgba(255,255,255,0.25); }
@keyframes statusPulse { 0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(74,222,128,0.5);} 50%{opacity:.6;box-shadow:0 0 0 5px rgba(74,222,128,0);} }

/* ===== Quick Links ===== */
.quicklinks { background: var(--dark); border-bottom: 1px solid var(--w05); overflow-x: auto; }
.quicklinks .no-scroll { max-width: 1280px; margin: 0 auto; padding: 12px 32px; display: flex; align-items: center; gap: 4px; white-space: nowrap; }
.quicklinks a { padding: 6px 12px; font-size: 9px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--w30); transition: color 0.3s, background 0.3s; border-radius: 2px; }
.quicklinks a:hover { color: var(--gold); background: var(--w05); }
.quicklinks .sep { color: var(--w10); margin: 0 4px; }
.quicklinks .hl { color: rgba(201,168,76,0.6); }
.quicklinks .hl:hover { color: var(--gold); }
@media (max-width: 720px) { .quicklinks { display: none; } }

/* ===== Navbar ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding: 24px 0; transition: background 0.5s, padding 0.5s, border-color 0.5s; border-bottom: 1px solid transparent; }
.navbar.scrolled { background: rgba(8,8,8,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 14px 0; border-bottom-color: var(--w05); }
.navbar__row { max-width: 1280px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; position: relative; height: 100px; }
.nav-side { display: flex; align-items: center; gap: 48px; flex: 1; }
.nav-side--right { justify-content: flex-end; }
.navbar__link { font-size: 9px; font-weight: 700; letter-spacing: 0.4em; text-transform: uppercase; color: var(--w40); transition: color 0.4s; }
.navbar__link:hover { color: var(--gold); }

.navbar__logo { position: absolute; left: 50%; transform: translateX(-50%); display: flex; align-items: center; z-index: 10; }
.navbar__logo img { height: 90px; width: auto; object-fit: contain; filter: drop-shadow(0 0 12px rgba(201,168,76,0.3)); transition: filter 0.3s; }
.navbar__logo:hover img { filter: drop-shadow(0 0 28px rgba(201,168,76,0.55)); }

.nav-menu-btn { display: none; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid var(--glass-border); color: var(--w70); transition: border-color 0.3s, color 0.3s; }
.nav-menu-btn:hover { border-color: rgba(201,168,76,0.4); color: var(--gold); }
@media (max-width: 960px) { .nav-side { display: none; } .navbar__row { height: 72px; } .navbar__logo img { height: 58px; } .nav-menu-btn { display: flex; } }

/* Drawer */
.drawer { position: fixed; inset: 0; z-index: 200; background: rgba(8,8,8,0.99); display: none; flex-direction: column; align-items: center; justify-content: center; padding: 48px 32px; }
.drawer.open { display: flex; }
.drawer__close { position: absolute; top: 32px; right: 32px; width: 44px; height: 44px; border: 1px solid var(--glass-border); display: grid; place-items: center; color: var(--w70); transition: border-color 0.3s, color 0.3s; }
.drawer__close:hover { border-color: rgba(201,168,76,0.4); color: var(--gold); }
.drawer__nav { display: flex; flex-direction: column; align-items: center; gap: 40px; margin-bottom: 48px; }
.drawer__nav a { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 500; color: #fff; transition: color 0.3s; }
.drawer__nav a:hover { color: var(--gold); }
.drawer__cta { margin-top: 16px; }

/* ===== Hero ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--dark); }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg-particles { position: absolute; inset: 0; background-image:
  radial-gradient(circle at 20% 20%, rgba(201,168,76,0.05) 0%, transparent 50%),
  radial-gradient(circle at 80% 80%, rgba(201,168,76,0.05) 0%, transparent 50%),
  radial-gradient(circle at 50% 50%, rgba(201,168,76,0.02) 0%, transparent 70%); }
.hero__bg-fade { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(8,8,8,0.4) 0%, rgba(8,8,8,0.05) 40%, var(--dark) 100%); }
.hero__content { position: relative; z-index: 1; text-align: center; padding: 120px 32px 160px; max-width: 1000px; width: 100%; }
.hero__eyebrow { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 32px; }

/* Hero logo */
.hero__logo-wrap { display: flex; justify-content: center; margin-bottom: 40px; }
.hero__logo-img { height: 160px; width: auto; filter: drop-shadow(0 0 40px rgba(201,168,76,0.4)); animation: floatLogo 5s ease-in-out infinite; }
@keyframes floatLogo { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }
@media (max-width: 720px) { .hero__logo-img { height: 120px; } }

.hero__title { font-family: 'Playfair Display', serif; font-size: clamp(36px, 7vw, 84px); font-weight: 500; line-height: 1.04; letter-spacing: -0.01em; text-transform: uppercase; margin-bottom: 12px; }
.hero__title em { font-style: italic; color: var(--gold); }
.hero__title-sub { font-family: 'Playfair Display', serif; font-size: clamp(14px, 2vw, 22px); font-weight: 400; letter-spacing: 0.3em; text-transform: uppercase; color: var(--w30); margin-bottom: 32px; }
.hero__sub { font-size: clamp(15px, 1.8vw, 19px); color: var(--w50); font-weight: 300; line-height: 1.7; max-width: 600px; margin: 0 auto 44px; }
.hero__proofbar { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 36px; margin-bottom: 48px; }
.hero__proof { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--w30); }
.hero__proof svg { color: rgba(201,168,76,0.6); flex-shrink: 0; }
.hero__actions { display: flex; flex-direction: column; align-items: center; gap: 28px; }
@media (min-width: 560px) { .hero__actions { flex-direction: row; justify-content: center; } }
.hero__link-text { display: flex; align-items: center; gap: 12px; font-size: 10px; font-weight: 700; letter-spacing: 0.4em; text-transform: uppercase; color: var(--w30); transition: color 0.3s; }
.hero__link-text:hover { color: var(--gold); }
.hero__link-text svg { transition: transform 0.3s; }
.hero__link-text:hover svg { transform: translateX(6px); }
.hero__scroll { position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 14px; opacity: 0.2; animation: scrollBob 3s ease-in-out infinite; }
.hero__scroll-label { font-size: 8px; font-weight: 700; letter-spacing: 0.5em; text-transform: uppercase; }
.hero__scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gold), transparent); }
@keyframes scrollBob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }
@media (max-width: 720px) { .hero__scroll { display: none; } }

/* ===== Trust Bar ===== */
.trustbar { background: var(--dark); border-top: 1px solid var(--w05); border-bottom: 1px solid var(--w05); }
.trustbar__inner { max-width: 1280px; margin: 0 auto; padding: 24px 32px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (min-width: 640px) { .trustbar__inner { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .trustbar__inner { grid-template-columns: repeat(6, 1fr); } }
.trustbar__item { display: flex; align-items: flex-start; gap: 12px; }
.trustbar__item svg { color: rgba(201,168,76,0.6); flex-shrink: 0; margin-top: 2px; }
.trustbar__label { font-size: 11px; font-weight: 700; color: var(--w70); line-height: 1.3; }
.trustbar__sub { font-size: 10px; color: var(--w30); margin-top: 3px; line-height: 1.3; }

/* ===== Sections ===== */
.section { padding: 96px 0; position: relative; overflow: hidden; }
@media (min-width: 768px) { .section { padding: 160px 0; } }
.section--dark { background: var(--dark); }
.section--alt { background: #0d0d0d; }
.section__line { width: 100%; height: 1px; background: linear-gradient(to right, transparent, var(--w05), transparent); }

/* ===== About ===== */
.about__grid { display: grid; gap: 64px; align-items: center; }
@media (min-width: 1024px) { .about__grid { grid-template-columns: 1fr 1fr; gap: 128px; } }
.about__media.glass-panel { aspect-ratio: 9/11; overflow: hidden; display: flex; align-items: center; justify-content: center; position: relative; }
.about__media-deco { position: absolute; inset: 0; background:
  radial-gradient(circle at 30% 20%, rgba(201,168,76,0.06) 0%, transparent 50%),
  radial-gradient(circle at 70% 80%, rgba(201,168,76,0.06) 0%, transparent 50%); }
.about__media-logo { width: 200px; height: 200px; object-fit: contain; opacity: 0.5; filter: drop-shadow(0 0 32px rgba(201,168,76,0.4)); }
.about__media-caption { position: absolute; bottom: 32px; left: 32px; right: 32px; text-align: center; }
.about__media-caption .about__brand { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 500; color: var(--gold); letter-spacing: 0.08em; }
.about__media-caption .about__tag { font-style: italic; font-family: 'Playfair Display', serif; font-size: 14px; color: var(--w30); margin-top: 6px; }

.about__body p { color: var(--w50); font-weight: 300; line-height: 1.8; margin-bottom: 24px; font-size: 17px; }
.about__body p strong { color: var(--w70); font-weight: 500; }
.about__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.about__chip { display: flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 100px; background: var(--w05); border: 1px solid var(--glass-border); font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--w40); }
.about__chip svg { color: rgba(201,168,76,0.5); }
.about__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.about__action { display: inline-flex; align-items: center; gap: 10px; padding: 12px 24px; border-radius: 100px; border: 1px solid; font-size: 13px; font-weight: 500; letter-spacing: 0.03em; transition: all 0.3s; }
.about__action--gold { border-color: rgba(201,168,76,0.35); color: var(--gold); }
.about__action--gold:hover { background: var(--gold-soft); }
.about__action--muted { border-color: var(--w10); color: var(--w60); }
.about__action--muted:hover { border-color: rgba(201,168,76,0.35); color: var(--gold); }
.about__socials { display: flex; gap: 14px; }
.about__social { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--w10); color: var(--w40); transition: all 0.3s; }
.about__social:hover { border-color: rgba(201,168,76,0.35); color: var(--gold); }

/* ===== Services ===== */
.services__hd { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; gap: 32px; margin-bottom: 64px; }
@media (min-width: 768px) { .services__hd { flex-direction: row; align-items: flex-end; margin-bottom: 128px; } }
.services__hd-copy { max-width: 680px; }
.services__hd-copy p { color: var(--w40); font-size: 17px; font-weight: 300; line-height: 1.7; }

/* Service tabs */
.services__tabs { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 64px; border-bottom: 1px solid var(--w05); }
.services__tab { padding: 12px 24px; font-size: 9px; font-weight: 700; letter-spacing: 0.4em; text-transform: uppercase; color: var(--w30); border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color 0.3s, border-color 0.3s; cursor: pointer; background: none; border-top: 0; border-left: 0; border-right: 0; white-space: nowrap; }
.services__tab:hover { color: var(--w60); }
.services__tab.active { color: var(--gold); border-bottom-color: var(--gold); }

/* Category sub-label within a services list */
.svc__category-label { font-size: 9px; font-weight: 700; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(201,168,76,0.5); margin-bottom: 48px; padding-bottom: 12px; border-bottom: 1px solid var(--w05); }

.services__panel { display: none; }
.services__panel.active { display: block; }

.services__cols { display: grid; gap: 64px; }
@media (min-width: 1024px) { .services__cols { grid-template-columns: 1fr 1fr; gap: 128px; } }
.services__list { display: flex; flex-direction: column; gap: 60px; }

.svc { position: relative; cursor: default; }
.svc__top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.svc__name-wrap { display: flex; align-items: center; gap: 14px; }
.svc__bar { display: block; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; transition: width 0.7s cubic-bezier(0.16,1,0.3,1); }
.svc:hover .svc__bar { width: 44px; }
.svc__name { font-family: 'Playfair Display', serif; font-size: clamp(20px, 2.4vw, 28px); font-weight: 500; color: #fff; transition: color 0.5s; }
.svc:hover .svc__name { color: var(--gold); }
.svc__price { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: rgba(201,168,76,0.6); transition: color 0.4s; }
.svc:hover .svc__price { color: var(--gold); }
.svc__desc { font-size: 13px; color: var(--w30); font-weight: 300; line-height: 1.65; max-width: 40ch; margin-bottom: 14px; padding-left: 42px; transition: color 0.4s; }
.svc:hover .svc__desc { color: var(--w60); }
.svc__foot { display: flex; align-items: center; gap: 14px; padding-left: 42px; }
.svc__time { font-size: 9px; font-weight: 700; letter-spacing: 0.4em; text-transform: uppercase; color: var(--w20); transition: color 0.4s; }
.svc:hover .svc__time { color: rgba(201,168,76,0.4); }
.svc__dash { height: 1px; width: 56px; background: linear-gradient(to right, rgba(201,168,76,0.4), transparent); transition: width 1s cubic-bezier(0.16,1,0.3,1); }
.svc:hover .svc__dash { width: 88px; }
.services__cta { text-align: center; margin-top: 80px; }

/* ===== Gallery ===== */
.gallery__intro { text-align: center; margin-bottom: 64px; }
.gallery__intro p { color: var(--w40); font-size: 17px; font-weight: 300; line-height: 1.7; max-width: 560px; margin: 0 auto; }
.gallery__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 640px) { .gallery__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .gallery__grid { grid-template-columns: repeat(4, 1fr); } }
.gallery__cell { aspect-ratio: 4/5; overflow: hidden; }
.gallery__ph { width: 100%; height: 100%; background: var(--glass-bg); border: 1px solid var(--glass-border); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--w20); transition: all 0.5s; position: relative; }
.gallery__ph::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 50%, rgba(201,168,76,0.03)); }
.gallery__ph:hover { border-color: rgba(201,168,76,0.25); background: rgba(255,255,255,0.05); }
.gallery__ph svg { color: rgba(201,168,76,0.3); }
.gallery__ph span { font-size: 9px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; }
.gallery__cta { text-align: center; margin-top: 48px; }

/* ===== Reviews ===== */
.reviews { background: #f5f5f3; color: #0a0a0a; }
.reviews__hd { text-align: center; margin-bottom: 80px; }
.reviews__title { font-family: 'Playfair Display', serif; font-size: clamp(32px, 5vw, 58px); font-weight: 500; letter-spacing: -0.01em; text-transform: uppercase; margin-bottom: 20px; }
.reviews__desc { color: rgba(10,10,10,0.55); font-weight: 300; max-width: 560px; margin: 0 auto; font-size: 16px; line-height: 1.7; }
.reviews__meta { display: flex; flex-direction: column; gap: 20px; margin-bottom: 64px; }
@media (min-width: 640px) { .reviews__meta { flex-direction: row; justify-content: space-between; align-items: center; } }
.reviews__score { display: flex; align-items: center; gap: 20px; }
.reviews__num { font-family: 'Playfair Display', serif; font-size: clamp(48px, 6vw, 64px); font-weight: 500; line-height: 1; }
.reviews__stars { color: var(--gold); font-size: 17px; letter-spacing: 2px; margin-bottom: 4px; }
.reviews__count { font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(10,10,10,0.4); }
.reviews__write { display: inline-block; background: #0a0a0a; color: #fff; padding: 18px 40px; font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; transition: background 0.3s, color 0.3s; }
.reviews__write:hover { background: var(--gold); color: #0a0a0a; }
.reviews__grid { display: grid; gap: 20px; margin-bottom: 80px; }
@media (min-width: 640px) { .reviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews__grid { grid-template-columns: repeat(3, 1fr); } }
.rcard { background: #fff; padding: 32px; border: 1px solid rgba(10,10,10,0.05); display: flex; flex-direction: column; height: 100%; }
.rcard__top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.rcard__stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; }
.rcard__date { font-size: 10px; color: rgba(10,10,10,0.3); font-weight: 500; margin-top: 4px; }
.rcard__text { font-size: 14px; color: rgba(10,10,10,0.65); font-style: italic; font-weight: 300; line-height: 1.75; flex-grow: 1; margin-bottom: 32px; }
.rcard__author { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid rgba(10,10,10,0.05); margin-top: auto; }
.rcard__avatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(10,10,10,0.05); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: rgba(10,10,10,0.4); flex-shrink: 0; }
.rcard__name { font-size: 12px; font-weight: 700; color: rgba(10,10,10,0.6); }
.reviews__cta { text-align: center; padding-top: 48px; border-top: 1px solid rgba(10,10,10,0.05); }
.reviews__cta-btn { display: inline-block; background: #0a0a0a; color: #fff; padding: 22px 64px; font-size: 11px; font-weight: 700; letter-spacing: 0.4em; text-transform: uppercase; transition: background 0.3s, color 0.3s; }
.reviews__cta-btn:hover { background: var(--gold); color: #0a0a0a; }

/* ===== CTA Band ===== */
.cta-band { position: relative; overflow: hidden; text-align: center; background: var(--dark); }
.cta-band__bg { position: absolute; inset: 0; z-index: 0; background:
  radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 60%),
  radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.04) 0%, transparent 60%); }
.cta-band__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: 0 32px; }
.cta-band__sub { color: var(--w40); font-size: 18px; font-weight: 300; margin-bottom: 64px; line-height: 1.6; }

/* ===== Map / Location ===== */
.map__embed { aspect-ratio: 16/9; overflow: hidden; position: relative; margin-bottom: 48px; }
@media (min-width: 768px) { .map__embed { aspect-ratio: 21/9; } }
.map__embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(0.88) contrast(1.1); opacity: 0.5; transition: opacity 0.8s; }
.map__embed:hover iframe { opacity: 0.85; }
.map__embed::after { content: ''; position: absolute; inset: 0; border: 1px solid var(--w05); pointer-events: none; }
.map__info { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
@media (min-width: 1024px) { .map__info { grid-template-columns: repeat(4, 1fr); } }
.map__group { display: flex; flex-direction: column; gap: 10px; }
.map__group-label { display: flex; align-items: center; gap: 8px; font-size: 9px; font-weight: 700; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(201,168,76,0.6); margin-bottom: 4px; }
.map__line { font-size: 12px; color: var(--w40); font-weight: 300; line-height: 1.6; }
.map__link { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(201,168,76,0.5); margin-top: 4px; transition: color 0.3s; }
.map__link:hover { color: var(--gold); }

/* ===== Footer ===== */
.footer { background: var(--dark); border-top: 1px solid var(--w05); padding: 96px 0 48px; }
@media (min-width: 768px) { .footer { padding: 160px 0 48px; } }
.footer__top { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 64px; }
@media (min-width: 768px) { .footer__top { margin-bottom: 128px; } }
.footer__logo-wrap { margin-bottom: 24px; }
.footer__logo-wrap img { height: 80px; width: auto; object-fit: contain; filter: drop-shadow(0 0 16px rgba(201,168,76,0.2)); margin: 0 auto; }
.footer__name { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 500; color: var(--gold); letter-spacing: 0.06em; }
.footer__tag { font-style: italic; font-family: 'Playfair Display', serif; font-size: 15px; color: var(--w30); margin-top: 8px; }
.footer__desc { color: var(--w40); font-size: 14px; font-weight: 300; line-height: 1.7; max-width: 460px; margin: 24px auto 48px; }
.footer__socials { display: flex; justify-content: center; gap: 20px; margin-bottom: 96px; }
@media (min-width: 768px) { .footer__socials { margin-bottom: 160px; } }
.footer__social { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--w10); color: var(--w20); transition: all 0.3s; }
.footer__social:hover { border-color: rgba(201,168,76,0.35); color: var(--gold); }
.footer__cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px 32px; width: 100%; padding-top: 64px; border-top: 1px solid var(--w05); text-align: left; }
@media (min-width: 768px) { .footer__cols { grid-template-columns: repeat(4, 1fr); } }
.footer__col-title { font-size: 10px; font-weight: 700; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 32px; }
.footer__col-body { display: flex; flex-direction: column; gap: 14px; }
.footer__col-body a, .footer__col-body p { font-size: 13px; color: var(--w40); font-weight: 300; line-height: 1.6; transition: color 0.25s; }
.footer__col-body a:hover { color: var(--gold); }
.footer__bottom { margin-top: 48px; padding-top: 48px; border-top: 1px solid var(--w05); display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
@media (min-width: 640px) { .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer__copy { font-size: 9px; font-weight: 700; letter-spacing: 0.4em; text-transform: uppercase; color: var(--w20); }
.footer__legal { display: flex; gap: 28px; }
.footer__legal a { font-size: 9px; font-weight: 700; letter-spacing: 0.4em; text-transform: uppercase; color: var(--w20); transition: color 0.3s; }
.footer__legal a:hover { color: var(--gold); }

/* ===== Mobile Sticky CTA ===== */
.mob-book { position: fixed; bottom: 0; left: 0; right: 0; z-index: 100; padding: 20px 24px; pointer-events: none; }
@media (min-width: 768px) { .mob-book { display: none; } }
.mob-book::before { content: ''; position: absolute; inset-x: 0; bottom: 0; height: 120px; background: linear-gradient(to top, var(--dark), transparent); pointer-events: none; }
.mob-book a { pointer-events: auto; position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; gap: 12px; width: 100%; padding: 20px; background: var(--gold); animation: goldPulse 2.5s ease-in-out infinite; transition: transform 0.1s; }
.mob-book a:active { transform: scale(0.97); }
.mob-book span { font-size: 11px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: #0a0a0a; }
.mob-book svg { color: #0a0a0a; }
@keyframes goldPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); } 50% { box-shadow: 0 0 20px 8px rgba(201,168,76,0.15); } }

/* ===== Sparkle deco ===== */
.sparkle-line { display: flex; align-items: center; gap: 16px; justify-content: center; margin-bottom: 20px; }
.sparkle-line span { display: block; height: 1px; width: 64px; background: linear-gradient(to right, transparent, rgba(201,168,76,0.4), transparent); }
.sparkle-line svg { color: var(--gold); opacity: 0.6; }
