/* ================================================
   VIP BEAUTY BAR — style.css
   Concept: "Warm Luxury Editorial"
   Palmetto Bay, Miami — Kérastase Certified
   Design system: Ivan v2 adapted (light theme)
   ================================================ */

/* ── 0. RESET ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { overflow-x: hidden; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; }
input { font: inherit; }

/* ── 1. TOKENS ───────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg:      #FDFAF6;
  --bg-2:    #F5F0E8;
  --bg-3:    #EDE5D5;
  --bg-dark: #1E1A16;
  --bg-card: #F0E9DC;

  /* Text */
  --ink:   #1E1A16;
  --ink-2: #7A6E62;
  --ink-3: #B5AFA7;

  /* Accent — Gold */
  --gold:       #C4A05C;
  --gold-dim:   #D4BA84;
  --gold-glow:  rgba(196, 160, 92, 0.12);
  --gold-light: #F0E0B8;

  /* Utility */
  --green:    #4A7C5B;
  --border:   rgba(30, 26, 22, 0.10);
  --border-h: rgba(196, 160, 92, 0.40);

  /* Typography */
  --font-d:  'Cormorant Garamond', Georgia, serif;
  --font-b:  'DM Sans', system-ui, sans-serif;
  --font-ui: 'JetBrains Mono', 'Courier New', monospace;

  /* Easing */
  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-o: cubic-bezier(0.0, 0.0, 0.2, 1.0);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --nav-h:  68px;
  --max-w:  1200px;
  --max-n:  760px;
  --r-card: 12px;
  --r-btn:  100px;

  /* Shadows */
  --shadow:    0 1px 4px rgba(30,26,22,0.06), 0 4px 16px rgba(30,26,22,0.04);
  --shadow-lg: 0 4px 20px rgba(30,26,22,0.10), 0 12px 48px rgba(30,26,22,0.06);
}

/* ── 2. BASE ─────────────────────────────────────── */
body {
  font: 400 1.0625rem/1.65 var(--font-b);
  color: var(--ink);
  background: var(--bg);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-d);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
p { color: var(--ink-2); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ── 3. LAYOUT ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.container--narrow { max-width: var(--max-n); }

.section { padding-block: clamp(4rem, 10vw, 8rem); }
.section--alt  { background: var(--bg-2); }
.section--dark { background: var(--bg-dark); color: var(--bg); }
.section--dark p { color: rgba(253,250,246,0.60); }

.label {
  font: 500 0.6875rem/1 var(--font-ui);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.section--dark .label { color: var(--gold-dim); }

.section-title {
  font: 600 clamp(2rem, 5vw, 3.5rem)/1.1 var(--font-d);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section--dark .section-title { color: var(--bg); }
.section-title em { font-style: italic; color: var(--ink-2); font-weight: 300; }
.section--dark .section-title em { color: rgba(253,250,246,0.45); }

/* ── 4. ANIMATIONS ───────────────────────────────── */

/* Film grain */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%; height: 200%;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%   { transform: translate(0,0); }
  10%  { transform: translate(-2%,-3%); }
  20%  { transform: translate(3%,1%); }
  30%  { transform: translate(-1%,4%); }
  40%  { transform: translate(2%,-2%); }
  50%  { transform: translate(-3%,2%); }
  60%  { transform: translate(1%,-4%); }
  70%  { transform: translate(4%,0%); }
  80%  { transform: translate(-2%,3%); }
  90%  { transform: translate(0%,-1%); }
  100% { transform: translate(-1%,2%); }
}

/* Reveal system */
.reveal-up {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.75s var(--ease-o), transform 0.75s var(--ease-o);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.75s var(--ease-o), transform 0.75s var(--ease-o);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.75s var(--ease-o), transform 0.75s var(--ease-o);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: none;
}

/* Custom cursor */
.cursor__dot {
  position: fixed;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  transition: width 0.2s var(--ease), height 0.2s var(--ease);
  will-change: left, top;
}
.cursor__ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1.5px solid rgba(196,160,92,0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9997;
  transition: width 0.25s var(--ease), height 0.25s var(--ease), border-color 0.25s;
  will-change: left, top;
}
body.cursor-hover .cursor__dot  { width: 10px; height: 10px; }
body.cursor-hover .cursor__ring { width: 48px; height: 48px; border-color: var(--gold); }
@media (hover: none) { .cursor__dot, .cursor__ring { display: none; } }

/* ── 5. NAV ──────────────────────────────────────── */
.nav {
  position: fixed;
  inset-inline: 0; top: 0;
  z-index: 1000;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(253,250,246,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav.hidden { transform: translateY(-100%); }

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__logo {
  flex-shrink: 0;
  display: flex; flex-direction: column; gap: 2px;
  margin-right: auto;
}
.nav__logo-name {
  font: 600 1rem/1 var(--font-d);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav__logo-sub {
  font: 400 0.5625rem/1 var(--font-ui);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* Language switcher */
.lang-switch {
  display: flex; gap: 2px;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 2px;
}
.lang-btn {
  font: 500 0.625rem/1 var(--font-ui);
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.375rem 0.625rem;
  border-radius: 100px;
  color: var(--ink-3);
  transition: background 0.2s, color 0.2s;
}
.lang-btn--active { background: var(--ink); color: var(--bg); }

/* Nav links */
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__link {
  font: 400 0.8125rem/1 var(--font-b);
  color: var(--ink-2);
  position: relative; padding-block: 4px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 1px; background: var(--gold);
  transition: left 0.3s var(--ease), right 0.3s var(--ease);
}
@media (hover: hover) {
  .nav__link:hover { color: var(--ink); }
  .nav__link:hover::after { left: 0; right: 0; }
}

/* Burger */
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; padding: 4px 0; flex-shrink: 0;
}
.nav__burger span {
  display: block; height: 1.5px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay */
.nav__mobile {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.nav__mobile.open { opacity: 1; pointer-events: all; }
.nav__mobile ul { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.nav__mobile-link {
  font: 300 clamp(2rem, 8vw, 3.5rem)/1 var(--font-d);
  letter-spacing: -0.02em; color: var(--ink);
  transition: color 0.2s;
}
@media (hover: hover) { .nav__mobile-link:hover { color: var(--gold); } }
.nav__mobile-cta { color: var(--gold); }

/* ── 6. BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font: 500 0.8125rem/1 var(--font-b);
  letter-spacing: 0.04em;
  padding: 0.875rem 1.75rem;
  border-radius: var(--r-btn);
  border: 1.5px solid transparent;
  transition: background 0.3s var(--ease), color 0.3s var(--ease),
              border-color 0.3s var(--ease), transform 0.15s var(--ease),
              box-shadow 0.3s var(--ease);
  cursor: pointer; white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn--primary { background: var(--gold); color: var(--bg-dark); border-color: var(--gold); }
.btn--outline { background: transparent; color: var(--ink-2); border-color: var(--border); }
.btn--dark    { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn--ghost   { background: transparent; color: var(--bg); border-color: rgba(255,255,255,0.25); }
.btn--nav {
  font: 500 0.75rem/1 var(--font-b); letter-spacing: 0.05em;
  padding: 0.625rem 1.25rem; border-radius: var(--r-btn);
  background: var(--ink); color: var(--bg); flex-shrink: 0;
  transition: background 0.3s var(--ease), transform 0.15s;
}
@media (hover: hover) {
  .btn--primary:hover { background: var(--gold-dim); box-shadow: 0 0 40px var(--gold-glow); }
  .btn--outline:hover { color: var(--ink); border-color: var(--border-h); }
  .btn--dark:hover    { background: #2e2820; }
  .btn--ghost:hover   { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }
  .btn--nav:hover     { background: var(--gold); }
}
.btn svg { flex-shrink: 0; }

/* ── 7. HERO (Full Background) ───────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
}

/* Full-bleed background image */
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 25%;
}

/* Blur pane — covers left side, fades to transparent right */
.hero__blur-pane {
  position: absolute; inset: 0; z-index: 1;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 35%, transparent 68%);
  mask-image: linear-gradient(to right, #000 0%, #000 35%, transparent 68%);
}

/* Dark gradient overlay — deepens blur zone, guides eye */
.hero__overlay {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(
    108deg,
    rgba(12, 9, 6, 0.88) 0%,
    rgba(12, 9, 6, 0.65) 36%,
    rgba(12, 9, 6, 0.20) 62%,
    rgba(12, 9, 6, 0.04) 100%
  );
}

/* Warm glow — mouse-tracking */
.hero__glow {
  position: absolute; z-index: 3;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,160,92,0.11) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none; left: 30%; top: 50%;
  will-change: left, top;
}

/* Layout */
.hero__layout {
  position: relative; z-index: 4;
  width: 100%; max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  padding-block: clamp(6rem, 12vw, 9rem);
  padding-top: calc(var(--nav-h) + clamp(4rem, 8vw, 6rem));
}

/* Content — constrained to left side */
.hero__content {
  display: flex; flex-direction: column;
  max-width: clamp(320px, 54%, 640px);
}

.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font: 500 0.6875rem/1 var(--font-ui); letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero__badge-dot {
  width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.5); }
}

/* Title — line-mask reveal */
.hero__title {
  font: 300 clamp(3.5rem, 8vw, 6.5rem)/0.95 var(--font-d);
  letter-spacing: -0.03em; color: #fff;
  margin-bottom: 1.5rem;
}
.hero__title-line { display: block; overflow: hidden; }
.hero__title-inner {
  display: block;
  transform: translateY(110%); opacity: 0;
  transition: transform 0.85s var(--ease-o), opacity 0.85s var(--ease-o);
}
.hero__title-line:nth-child(1) .hero__title-inner { transition-delay: 50ms; }
.hero__title-line:nth-child(2) .hero__title-inner { transition-delay: 160ms; }
.hero__title-line:nth-child(3) .hero__title-inner { transition-delay: 270ms; }
.hero__title-line.visible .hero__title-inner { transform: translateY(0); opacity: 1; }

.hero__title-italic { font-style: italic; color: var(--gold); }

.hero__sub {
  font: 400 1.0625rem/1.7 var(--font-b);
  color: rgba(255, 255, 255, 0.62);
  max-width: 44ch; margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.hero__trust > span {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font: 400 0.8125rem/1 var(--font-b); color: rgba(255,255,255,0.50);
}
.hero__trust-check { color: var(--gold); }

/* Frosted badge in bottom-right corner of photo area (decorative) */
.hero__corner-badge {
  position: absolute; z-index: 4;
  right: clamp(1.5rem, 5vw, 5rem);
  bottom: clamp(3rem, 8vh, 6rem);
  background: rgba(253,250,246,0.08);
  border: 1px solid rgba(253,250,246,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
  opacity: 0; transform: translateY(10px);
  animation: tag-appear 0.6s var(--ease-o) 1.1s forwards;
}
.hero__corner-badge-star { font-size: 1.25rem; color: var(--gold); line-height: 1; }
.hero__corner-badge-text {
  font: 400 0.6875rem/1.5 var(--font-ui);
  letter-spacing: 0.06em; color: rgba(255,255,255,0.85);
}
@keyframes tag-appear { to { opacity: 1; transform: translateY(0); } }

/* Scroll indicator */
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font: 400 0.5625rem/1 var(--font-ui); letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.30); opacity: 0; z-index: 4;
  animation: fade-in 0.6s var(--ease-o) 1.5s forwards;
}
.hero__scroll-track {
  width: 1px; height: 40px; background: rgba(255,255,255,0.15);
  position: relative; overflow: hidden;
}
.hero__scroll-thumb {
  position: absolute; top: 0; left: 0; right: 0; height: 50%; background: var(--gold);
  animation: scroll-thumb 2s var(--ease) infinite;
}
@keyframes scroll-thumb { 0% { top: -50%; } 100% { top: 100%; } }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

/* Nav overrides when on top of photo hero */
.nav:not(.scrolled) .nav__logo-name { color: #fff; }
.nav:not(.scrolled) .nav__logo-sub  { color: rgba(255,255,255,0.38); }
.nav:not(.scrolled) .nav__link      { color: rgba(255,255,255,0.68); }
@media (hover: hover) {
  .nav:not(.scrolled) .nav__link:hover { color: #fff; }
  .nav:not(.scrolled) .nav__link:hover::after { background: var(--gold); }
}
.nav:not(.scrolled) .lang-switch    { border-color: rgba(255,255,255,0.18); }
.nav:not(.scrolled) .lang-btn       { color: rgba(255,255,255,0.45); }
.nav:not(.scrolled) .lang-btn--active { background: rgba(255,255,255,0.14); color: #fff; }
.nav:not(.scrolled) .btn--nav       { background: var(--gold); color: var(--bg-dark); }
.nav:not(.scrolled) .nav__burger span { background: #fff; }

/* ── 8. TICKER ───────────────────────────────────── */
.ticker {
  background: var(--bg-dark); padding-block: 0.875rem; overflow: hidden;
  border-block: 1px solid rgba(253,250,246,0.06);
}
.ticker__track {
  display: flex; align-items: center; gap: 2.5rem;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
  font: 400 0.6875rem/1 var(--font-ui); letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(253,250,246,0.45);
}
.ticker__dot { color: var(--gold); opacity: 0.7; }
.ticker__hi  { color: var(--gold-dim); }
@keyframes ticker-scroll { to { transform: translateX(-50%); } }

/* ── 9. HOW IT WORKS ─────────────────────────────── */
.how__header {
  text-align: center; max-width: var(--max-n);
  margin-inline: auto; margin-bottom: clamp(3rem, 6vw, 5rem);
}
.how__steps {
  display: flex; align-items: flex-start; gap: 0;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.how__step { flex: 1; text-align: center; padding: 0 1.5rem; }
.how__step-num {
  font: 400 2.5rem/1 var(--font-ui); color: var(--gold-light);
  letter-spacing: -0.05em; margin-bottom: 1.25rem;
}
.how__step h3 {
  font: 600 1.25rem/1.2 var(--font-d); color: var(--ink); margin-bottom: 0.625rem;
}
.how__step p { font-size: 0.9375rem; color: var(--ink-2); line-height: 1.6; }
.how__connector {
  width: 60px; height: 1px; flex-shrink: 0;
  background: linear-gradient(to right, var(--border), var(--border-h), var(--border));
  margin-top: 2.75rem; align-self: auto;
}

/* Stats */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; border-top: 1px solid var(--border);
  padding-top: clamp(2rem, 4vw, 3.5rem);
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.stat__num {
  font: 300 clamp(2rem, 5vw, 3.5rem)/1 var(--font-d);
  letter-spacing: -0.03em; color: var(--ink);
}
.stat__label {
  font: 400 0.75rem/1 var(--font-b); color: var(--ink-3);
  text-transform: uppercase; letter-spacing: 0.12em;
}

/* ── 10. SERVICES ────────────────────────────────── */
.services__header {
  text-align: center; max-width: var(--max-n);
  margin-inline: auto; margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.services__grid .svc-card:first-child { grid-column: span 2; }

.svc-card {
  position: relative; overflow: hidden; border-radius: var(--r-card);
  height: clamp(320px, 40vw, 480px); background: var(--bg-3);
}
.svc-card__img { position: absolute; inset: 0; }
.svc-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.svc-card__img.svc-card__img--fallback { background: var(--bg-3); }
.svc-card__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(20,16,12,0.92) 0%, rgba(20,16,12,0.28) 55%, rgba(20,16,12,0.04) 100%);
}
.svc-card__body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: clamp(1.25rem, 3vw, 1.75rem); z-index: 2;
}
.svc-card__body h3 {
  font: 600 clamp(1.125rem, 2vw, 1.5rem)/1.1 var(--font-d);
  color: #fff; margin-bottom: 0.375rem;
}
.svc-card__body p {
  font-size: 0.875rem; color: rgba(255,255,255,0.60);
  margin-bottom: 1rem; line-height: 1.5;
}
.svc-card__footer { display: flex; align-items: center; justify-content: space-between; }
.svc-card__price {
  font: 500 0.6875rem/1 var(--font-ui); letter-spacing: 0.1em; color: var(--gold-dim);
}
.svc-card__cta {
  font: 500 0.75rem/1 var(--font-b); color: rgba(255,255,255,0.8);
  padding: 0.5rem 1rem; border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-btn); transition: background 0.25s, border-color 0.25s, color 0.25s;
}
@media (hover: hover) {
  .svc-card:hover .svc-card__img img { transform: scale(1.06); }
  .svc-card__cta:hover { background: var(--gold); border-color: var(--gold); color: var(--bg-dark); }
}
.services__note {
  text-align: center; font-size: 0.875rem;
  color: var(--ink-3); margin-top: 2rem; font-style: italic;
}

/* ── 11. GALLERY ─────────────────────────────────── */
.gallery__header {
  text-align: center; max-width: var(--max-n);
  margin-inline: auto; margin-bottom: 2rem;
}
.gallery__filters {
  display: flex; justify-content: center; gap: 0.5rem;
  flex-wrap: wrap; margin-bottom: clamp(2rem, 4vw, 3rem);
}
.gallery__filter {
  font: 500 0.75rem/1 var(--font-ui); letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.625rem 1.25rem; border-radius: var(--r-btn);
  border: 1px solid var(--border); color: var(--ink-2);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.gallery__filter--active,
.gallery__filter:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.gallery__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px; gap: 0.875rem;
}
.gallery__item {
  position: relative; overflow: hidden; border-radius: 8px;
  background: var(--bg-3); cursor: pointer;
}
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery__item[data-hidden] { display: none; }
@media (hover: hover) { .gallery__item:hover img { transform: scale(1.06); } }

/* Before / After */
.ba { margin-top: clamp(2.5rem, 5vw, 4rem); }
.ba__header { text-align: center; margin-bottom: 1.5rem; }
.ba__header h3 { font: 400 1.5rem/1.2 var(--font-d); color: var(--ink); }
.ba__header p { font-size: 0.875rem; color: var(--ink-3); margin-top: 0.375rem; }
.ba__container {
  position: relative; overflow: hidden; border-radius: var(--r-card);
  height: clamp(280px, 48vw, 480px); max-width: 800px; margin-inline: auto;
  cursor: col-resize; user-select: none; -webkit-user-select: none;
}
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__img--after { clip-path: inset(0 50% 0 0); }
.ba__divider {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px;
  background: rgba(255,255,255,0.9); transform: translateX(-50%); z-index: 2;
}
.ba__handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 44px; height: 44px; border-radius: 50%; background: #fff; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25); gap: 3px;
  font-size: 0.75rem; color: var(--ink-2);
}
.ba__label {
  position: absolute; bottom: 1rem;
  font: 500 0.5625rem/1 var(--font-ui); letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff; background: rgba(0,0,0,0.45); padding: 0.375rem 0.75rem;
  border-radius: 100px; z-index: 2;
}
.ba__label--before { left: 1rem; }
.ba__label--after  { right: 1rem; }

/* ── 12. TEAM ────────────────────────────────────── */
.team__header {
  text-align: center; max-width: var(--max-n);
  margin-inline: auto; margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.team__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.team-card {
  background: var(--bg-card); border-radius: var(--r-card);
  overflow: hidden; border: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
@media (hover: hover) { .team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); } }
.team-card__img { aspect-ratio: 3/4; background: var(--bg-3); overflow: hidden; }
.team-card__img img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  transition: transform 0.6s var(--ease);
}
@media (hover: hover) { .team-card:hover .team-card__img img { transform: scale(1.04); } }
.team-card__body { padding: 1.25rem 1.5rem 1.5rem; }
.team-card__role {
  font: 500 0.5625rem/1 var(--font-ui); letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.375rem;
}
.team-card__name { font: 600 1.375rem/1.1 var(--font-d); color: var(--ink); margin-bottom: 0.5rem; }
.team-card__bio  { font-size: 0.875rem; color: var(--ink-2); line-height: 1.6; }

/* ── 13. PRICING ─────────────────────────────────── */
.pricing__header {
  text-align: center; max-width: var(--max-n);
  margin-inline: auto; margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.pricing__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; max-width: 920px; margin-inline: auto;
}
.price-card {
  background: var(--bg-card); border-radius: var(--r-card);
  border: 1px solid var(--border);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.price-card--featured {
  border-color: var(--gold); background: var(--bg);
  box-shadow: 0 0 0 1px var(--border-h), var(--shadow);
}
.price-card__badge {
  display: inline-block;
  font: 500 0.5625rem/1 var(--font-ui); letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--bg-dark); background: var(--gold);
  border-radius: 100px; padding: 0.375rem 0.75rem; margin-bottom: 1.25rem;
}
.price-card__name {
  font: 600 1.5rem/1.1 var(--font-d); color: var(--ink); margin-bottom: 0.375rem;
}
.price-card__desc { font-size: 0.9375rem; color: var(--ink-2); margin-bottom: 1.5rem; }
.price-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 1.5rem; }
.price-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding-block: 0.625rem; border-bottom: 1px solid var(--border);
}
.price-row:last-child { border-bottom: none; }
.price-row__name  { font-size: 0.9375rem; color: var(--ink); }
.price-row__price { font: 500 0.8125rem/1 var(--font-ui); color: var(--gold); flex-shrink: 0; }
.price-card__note { font-size: 0.8125rem; color: var(--ink-3); font-style: italic; margin-top: 1rem; }
.price-card .btn  { width: 100%; }

/* ── 14. REVIEWS ─────────────────────────────────── */
.reviews__header {
  text-align: center; max-width: var(--max-n);
  margin-inline: auto; margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card {
  background: var(--bg-card); border-radius: var(--r-card);
  border: 1px solid var(--border); padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.review-card__stars { color: var(--gold); letter-spacing: 2px; font-size: 0.875rem; }
.review-card__text {
  font: 400 1rem/1.7 var(--font-d); color: var(--ink);
  font-style: italic; flex: 1;
}
.review-card__author {
  display: flex; align-items: center; gap: 0.75rem;
  padding-top: 1rem; border-top: 1px solid var(--border);
}
.review-card__avatar {
  width: 36px; height: 36px; border-radius: 50%; background: var(--bg-3);
  display: flex; align-items: center; justify-content: center;
  font: 600 0.875rem/1 var(--font-d); color: var(--gold); flex-shrink: 0;
}
.review-card__name   { font: 600 0.9375rem/1 var(--font-d); color: var(--ink); }
.review-card__handle { font: 400 0.75rem/1 var(--font-ui); color: var(--ink-3); margin-top: 2px; }

/* ── 15. FAQ ─────────────────────────────────────── */
.faq__header {
  text-align: center; max-width: var(--max-n);
  margin-inline: auto; margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.faq__list {
  max-width: 720px; margin-inline: auto;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--border);
}
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.375rem 0; text-align: left;
  font: 600 1rem/1.3 var(--font-b); color: var(--ink);
  transition: color 0.2s;
}
@media (hover: hover) { .faq__q:hover { color: var(--gold); } }
.faq__icon {
  width: 24px; height: 24px; border: 1px solid var(--border); border-radius: 50%;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem; line-height: 1; color: var(--ink-2);
  transition: transform 0.3s var(--ease), border-color 0.3s, color 0.3s;
}
.faq__item--open .faq__icon { transform: rotate(45deg); border-color: var(--gold); color: var(--gold); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s var(--ease-o); }
.faq__item--open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner { overflow: hidden; }
.faq__a-inner p { padding-bottom: 1.375rem; font-size: 0.9375rem; color: var(--ink-2); line-height: 1.7; }

/* ── 16. CTA ─────────────────────────────────────── */
.cta { background: var(--bg-dark); position: relative; overflow: hidden; text-align: center; }
.cta::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(196,160,92,0.12) 0%, transparent 65%);
}
.cta .container { position: relative; z-index: 1; }
.cta__title {
  font: 300 clamp(2.5rem, 6vw, 5rem)/1.05 var(--font-d);
  letter-spacing: -0.02em; color: var(--bg); margin-bottom: 1.25rem;
}
.cta__title em { font-style: italic; color: var(--gold-dim); }
.cta__sub {
  font-size: 1rem; color: rgba(253,250,246,0.55);
  max-width: 50ch; margin-inline: auto; margin-bottom: 2.5rem;
}
.cta__actions {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 0.875rem;
}

/* ── 17. LOCATION ────────────────────────────────── */
.location__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: start;
}
.location__content { display: flex; flex-direction: column; gap: 2rem; }
.location__address h2 {
  font: 600 clamp(1.75rem, 4vw, 3rem)/1.1 var(--font-d);
  color: var(--ink); margin-bottom: 0.625rem;
}
.location__address p { font-size: 0.9375rem; color: var(--ink-2); }

.location__detail { display: flex; flex-direction: column; gap: 0.625rem; }
.location__detail a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.9375rem; color: var(--ink-2);
  transition: color 0.2s;
}
@media (hover: hover) { .location__detail a:hover { color: var(--gold); } }
.location__detail-icon { color: var(--gold); flex-shrink: 0; }

.location__hours { display: flex; flex-direction: column; gap: 0; }
.location__hours h3 {
  font: 600 1rem/1 var(--font-b); color: var(--ink); margin-bottom: 1rem;
}
.location__hour-row {
  display: flex; justify-content: space-between; align-items: center;
  padding-block: 0.5625rem; border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.location__hour-row:last-child { border-bottom: none; }
.location__hour-row span:first-child { color: var(--ink-2); }
.location__hour-row span:last-child  { color: var(--ink); font-weight: 500; }

.location__map {
  border-radius: var(--r-card); overflow: hidden;
  aspect-ratio: 4/3; border: 1px solid var(--border);
}
.location__map iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── 18. FOOTER ──────────────────────────────────── */
.footer { background: var(--bg-dark); padding-block: 3rem 2rem; }
.footer__top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 2rem; flex-wrap: wrap;
  padding-bottom: 2rem; border-bottom: 1px solid rgba(253,250,246,0.08);
  margin-bottom: 2rem;
}
.footer__brand-name {
  font: 600 1.25rem/1 var(--font-d); color: var(--bg); margin-bottom: 0.375rem;
}
.footer__brand-sub {
  font: 400 0.5625rem/1 var(--font-ui); letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(253,250,246,0.3);
}
.footer__links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer__link {
  font: 400 0.875rem/1 var(--font-b); color: rgba(253,250,246,0.4);
  transition: color 0.2s;
}
@media (hover: hover) { .footer__link:hover { color: var(--bg); } }
.footer__social { display: flex; gap: 0.875rem; }
.footer__social-link {
  width: 36px; height: 36px; border: 1px solid rgba(253,250,246,0.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(253,250,246,0.45); font-size: 0.875rem;
  transition: border-color 0.2s, color 0.2s;
}
@media (hover: hover) { .footer__social-link:hover { border-color: var(--gold); color: var(--gold); } }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer__copy    { font: 400 0.75rem/1 var(--font-ui); color: rgba(253,250,246,0.22); }
.footer__privacy { font: 400 0.75rem/1 var(--font-b);  color: rgba(253,250,246,0.3); transition: color 0.2s; }
@media (hover: hover) { .footer__privacy:hover { color: rgba(253,250,246,0.6); } }

/* ── 19. MOBILE STICKY BAR ───────────────────────── */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  padding: 0.75rem 1.25rem;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(253,250,246,0.96);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  display: none; gap: 0.75rem;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-o);
}
.mobile-bar.visible { transform: translateY(0); }
.mobile-bar .btn { flex: 1; }

/* ── 20. CHAT WIDGET ─────────────────────────────── */
.chat-btn {
  position: fixed; bottom: 2rem; right: 1.5rem;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold); color: var(--bg-dark);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(196,160,92,0.4); z-index: 997;
  transition: transform 0.2s var(--spring), box-shadow 0.2s;
  cursor: pointer;
}
@media (hover: hover) {
  .chat-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(196,160,92,0.5); }
}
.chat-bubble {
  position: fixed;
  bottom: calc(2rem + 68px); right: 1.5rem;
  width: min(360px, calc(100vw - 2rem));
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 16px; box-shadow: var(--shadow-lg);
  z-index: 997; display: flex; flex-direction: column; max-height: 460px;
  opacity: 0; pointer-events: none;
  transform: translateY(10px) scale(0.97); transform-origin: bottom right;
  transition: opacity 0.3s var(--ease-o), transform 0.3s var(--ease-o);
}
.chat-bubble.open { opacity: 1; pointer-events: all; transform: none; }

.chat-bubble__header {
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0;
}
.chat-bubble__avatar {
  width: 32px; height: 32px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; color: var(--bg-dark); flex-shrink: 0;
}
.chat-bubble__title   { font: 600 0.875rem/1 var(--font-b); color: var(--ink); }
.chat-bubble__sub     { font: 400 0.75rem/1 var(--font-b); color: var(--ink-3); margin-top: 2px; }
.chat-bubble__close   { margin-left: auto; color: var(--ink-3); font-size: 1.125rem; line-height: 1; padding: 4px; transition: color 0.2s; }
.chat-bubble__close:hover { color: var(--ink); }

.chat-messages {
  flex: 1; overflow-y: auto; padding: 1rem 1.25rem;
  display: flex; flex-direction: column; gap: 0.75rem; min-height: 0;
}
.chat-msg {
  max-width: 85%; padding: 0.625rem 0.875rem; border-radius: 12px;
  font-size: 0.875rem; line-height: 1.5;
}
.chat-msg--bot  {
  background: var(--bg-2); border: 1px solid var(--border);
  color: var(--ink); border-radius: 12px 12px 12px 3px;
}
.chat-msg--user {
  background: var(--gold); color: var(--bg-dark);
  margin-left: auto; border-radius: 12px 12px 3px 12px;
}
.chat-msg--typing { display: flex; gap: 4px; align-items: center; padding: 0.75rem 0.875rem; }
.chat-msg--typing span {
  width: 6px; height: 6px; background: var(--ink-3); border-radius: 50%;
  animation: typing-dot 1.2s ease-in-out infinite;
}
.chat-msg--typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-msg--typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-dot { 0%, 80%, 100% { transform: scale(0.7); opacity: 0.4; } 40% { transform: scale(1); opacity: 1; } }

.chat-bubble__input {
  padding: 0.875rem 1.25rem; border-top: 1px solid var(--border);
  display: flex; gap: 0.5rem; flex-shrink: 0;
}
.chat-input {
  flex: 1; padding: 0.625rem 0.875rem; border-radius: 100px;
  border: 1px solid var(--border); background: var(--bg-2);
  font: 400 0.875rem/1 var(--font-b); color: var(--ink);
  outline: none; transition: border-color 0.2s;
}
.chat-input:focus { border-color: var(--gold); }
.chat-send {
  width: 36px; height: 36px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--bg-dark); flex-shrink: 0; transition: background 0.2s;
}
.chat-send:hover { background: var(--gold-dim); }

/* ── 21. RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid .svc-card:first-child { grid-column: span 2; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav__links { display: none; }
  .btn--nav   { display: none; }
  .lang-switch { order: -1; }
  .nav__burger { display: flex; }

  /* Hero */
  .hero {
    align-items: flex-end;
  }
  .hero__bg img {
    object-position: 55% 15%;
  }
  .hero__blur-pane {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: none;
  }
  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(12,9,6,0.45) 0%,
      rgba(12,9,6,0.60) 40%,
      rgba(12,9,6,0.82) 75%,
      rgba(12,9,6,0.95) 100%
    );
  }
  .hero__layout {
    padding-top: calc(var(--nav-h) + 1.5rem);
    padding-bottom: 3.5rem;
  }
  .hero__content { max-width: 100%; text-align: center; }
  .hero__badge {
    font-size: 0.5625rem;
    flex-wrap: wrap;
    justify-content: center;
    line-height: 1.6;
  }
  .hero__sub, .hero__badge { margin-inline: auto; }
  .hero__trust, .hero__actions { justify-content: center; }
  .hero__trust { gap: 0.75rem; }
  .hero__trust > span { font-size: 0.75rem; }
  .hero__corner-badge { display: none; }
  .hero__scroll { display: none; }

  /* How */
  .how__steps { flex-direction: column; gap: 0; }
  .how__step  { padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
  .how__step:last-child { border-bottom: none; }
  .how__connector { display: none; }
  .stats { gap: 1rem; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }
  .services__grid .svc-card:first-child { grid-column: span 1; }

  /* Gallery */
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery__item--wide { grid-column: span 1; }

  /* Team */
  .team__grid {
    grid-template-columns: 1fr;
    max-width: 360px; margin-inline: auto;
  }

  /* Pricing */
  .pricing__grid { grid-template-columns: 1fr; }

  /* Reviews */
  .reviews__grid { grid-template-columns: 1fr; }

  /* Location */
  .location__inner { grid-template-columns: 1fr; }

  /* Footer */
  .footer__top { flex-direction: column; }
  .footer__bottom { flex-direction: column; text-align: center; }

  /* Mobile bar */
  .mobile-bar { display: flex; }
  .chat-btn { bottom: calc(5.5rem + env(safe-area-inset-bottom)); }
  .chat-bubble { bottom: calc(5.5rem + env(safe-area-inset-bottom) + 68px); }

  /* Add bottom padding to last section */
  main > section:last-of-type { padding-bottom: calc(5rem + env(safe-area-inset-bottom)); }
}

/* ── 22. prefers-reduced-motion ──────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-left, .reveal-right { opacity: 1; transform: none; transition: none; }
  .grain { animation: none; }
  .ticker__track { animation-play-state: paused; }
  .hero__scroll-thumb, .hero__badge-dot { animation: none; }
  .hero__title-line .hero__title-inner { transform: none; opacity: 1; transition: none; }
  .hero__corner-badge { animation: none; opacity: 1; transform: none; }
  .hero__scroll { animation: none; opacity: 1; }
}
