/* EVA Beauty Studio — design tokens + components.
   For a quick map of what's in here, see the table of contents below. */

/* CONTENTS
   Theme tokens live in :root + [data-theme="dark"] just below.
     L 141 — Base
     L 231 — Buttons
     L 293 — Navbar
     L 446 — Hero
     L 559 — Sections / Section heading
     L 566 — Service cards
     L 642 — About / Values
     L 699 — Gallery curated (museum/editorial layout)
     L 890 — Testimonials
     L 947 — CTA banner
     L 971 — Forms
     L1014 — Modal
     L1068 — Toast
     L1110 — Spinner / Loading
     L1175 — Empty state
     L1194 — FAQ
     L1242 — Footer
     L1324 — Trust signals strip
     L1350 — Page header
     L1380 — Confetti
     L1401 — Scroll reveal
     L1432 — WhatsApp floating button
     L1484 — Before / After slider
     L1578 — Custom calendar
     L1891 — Real gallery photos support
     L1904 — Scroll to top
     L1927 — Booking specific
     L1980 — Map (contact)
     L1997 — Skip link
     L2010 — Responsive
     L2028 — Booking wizard (lifted from rezervo.html on consolidation)
     L2029 — Wizard stepper
     L2090 — Wizard panels
     L2132 — Service grid
     L2201 — Booking calendar (richer than default)
*/





:root {
  /* Brand Palette */
  --rose-50:  #fdf6f3;
  --rose-100: #f9e7df;
  --rose-200: #f1cfc0;
  --rose-300: #e6b39c;
  --rose-400: #d99a7e;
  --rose-500: #c87f60;
  --rose-600: #a86547;
  --rose-700: #84502f;
  --gold-400: #d4a574;
  --gold-500: #c89968;
  --champagne: #efe1d1;
  --nude:     #f4ddcf;

  /* Neutrals */
  --ink-950: #0a0807;
  --ink-900: #141110;
  --ink-800: #1d1917;
  --ink-700: #2a2421;
  --ink-600: #3a322d;
  --ink-500: #5a4f48;
  --ink-300: #a89c93;
  --ink-200: #d6cdc4;
  --ink-100: #ece4dc;
  --ink-50:  #f7f2ed;
  --white:   #ffffff;

  /* Semantic — light theme defaults */
  --bg:        var(--ink-50);
  --bg-elev:   #ffffff;
  --bg-soft:   var(--rose-50);
  --surface:   #ffffff;
  --border:    rgba(168, 101, 71, 0.14);
  --border-strong: rgba(168, 101, 71, 0.28);
  --text:      var(--ink-900);
  --text-soft: var(--ink-500);
  --text-mute: var(--ink-300);
  --accent:    var(--rose-500);
  --accent-2:  var(--gold-500);
  --accent-soft: var(--rose-100);
  --success:   #4b8b6b;
  --warning:   #c89968;
  --danger:    #b85450;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(40, 26, 18, 0.06), 0 1px 3px rgba(40, 26, 18, 0.04);
  --shadow-md: 0 4px 12px rgba(40, 26, 18, 0.08), 0 2px 6px rgba(40, 26, 18, 0.05);
  --shadow-lg: 0 16px 40px rgba(40, 26, 18, 0.12), 0 6px 16px rgba(40, 26, 18, 0.06);
  --shadow-glow: 0 0 0 4px rgba(200, 127, 96, 0.12);

  /* Typography */
  --font-display: 'Outfit', 'Segoe UI', system-ui, sans-serif;
  --font-body:    'Outfit', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-script:  'Outfit', 'Segoe UI', system-ui, sans-serif;

  /* Radii */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container: 1200px;
  --nav-h: 76px;
}

/* Dark theme */
[data-theme="dark"] {
  --bg:        var(--ink-950);
  --bg-elev:   var(--ink-900);
  --bg-soft:   var(--ink-800);
  --surface:   var(--ink-900);
  --border:    rgba(231, 197, 169, 0.10);
  --border-strong: rgba(231, 197, 169, 0.22);
  --text:      #f4e9df;
  --text-soft: #bba99a;
  --text-mute: #7a6c61;
  --accent:    var(--rose-300);
  --accent-2:  var(--gold-400);
  --accent-soft: rgba(230, 179, 156, 0.10);

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.45), 0 2px 6px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.55), 0 6px 16px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 0 4px rgba(230, 179, 156, 0.16);
}

/* — Base — */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  font-optical-sizing: auto;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color .4s var(--ease-out), color .4s var(--ease-out);
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color .2s var(--ease-out);
}
a:hover { color: var(--accent-2); }

::selection { background: var(--accent); color: #fff; }

button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 .6em;
  color: var(--text);
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.4rem, 5.6vw, 4.4rem); font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.35rem, 2.1vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
p  { margin: 0 0 1em; color: var(--text-soft); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: clamp(64px, 9vw, 120px) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

.script {
  font-family: var(--font-script);
  color: var(--accent);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.02em;
}

.text-center { text-align: center; }
.text-soft   { color: var(--text-soft); }

/* — Buttons — */
.btn {
  --bg-btn: var(--accent);
  --fg-btn: #0a0807;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--bg-btn);
  color: var(--fg-btn);
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .25s var(--ease-spring),
              box-shadow .25s var(--ease-out),
              background .25s var(--ease-out);
  isolation: isolate;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  color: var(--fg-btn);
}
.btn:active { transform: translateY(0); }
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,.25) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .6s var(--ease-out);
  z-index: -1;
}
.btn:hover::after { transform: translateX(100%); }

.btn--ghost {
  --bg-btn: transparent;
  --fg-btn: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover {
  --bg-btn: var(--accent-soft);
  color: var(--text);
}

.btn--lg { padding: 18px 36px; font-size: 1rem; }
.btn--sm { padding: 10px 20px; font-size: .85rem; }

.btn-icon {
  width: 18px;
  height: 18px;
  transition: transform .3s var(--ease-spring);
}
.btn:hover .btn-icon { transform: translateX(4px); }

/* — Navbar — */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 90;
  display: flex;
  align-items: center;
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease-out),
              border-color .3s var(--ease-out),
              height .3s var(--ease-out);
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
}

.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
}
/* Theme-aware brand mark: light-bg logo in light theme, dark-bg logo in dark.
   Both <img> tags ship in the markup; CSS picks which to render. */
.brand-mark--dark { display: none; }
[data-theme="dark"] .brand-mark--light { display: none; }
[data-theme="dark"] .brand-mark--dark  { display: inline-block; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
}
.brand-name em {
  font-style: normal;
  color: var(--accent);
  font-weight: 700;
  margin-right: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-link {
  position: relative;
  padding: 10px 16px;
  color: var(--text-soft);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .02em;
  border-radius: var(--r-pill);
  transition: color .2s var(--ease-out), background .2s var(--ease-out);
}
.nav-link:hover { color: var(--text); background: var(--accent-soft); }
.nav-link.active { color: var(--accent); }
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 2px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(-50%);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.theme-toggle, .nav-toggle {
  width: 42px; height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-strong);
  background: transparent;
  border-radius: 50%;
  color: var(--text);
  transition: background .2s var(--ease-out), transform .2s var(--ease-spring);
}
.theme-toggle:hover, .nav-toggle:hover {
  background: var(--accent-soft);
  transform: rotate(10deg);
}
.theme-toggle svg, .nav-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun  { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun  { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

.nav-toggle { display: none; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--bg);
  z-index: 80;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .4s var(--ease-out), opacity .3s var(--ease-out);
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu .nav-link {
  font-size: 1.5rem;
  padding: 14px 0;
  font-family: var(--font-display);
  letter-spacing: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .nav-link.active::after { display: none; }
.mobile-menu .btn { margin-top: 24px; }

/* — Hero — */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-h) + 40px) 0 60px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(circle at 30% 40%, var(--accent-soft) 0%, transparent 60%);
  filter: blur(60px);
  z-index: 0;
  animation: float 14s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 50%; height: 70%;
  background: radial-gradient(circle at 60% 50%, rgba(212,165,116,.18) 0%, transparent 60%);
  filter: blur(80px);
  z-index: 0;
  animation: float 18s ease-in-out infinite reverse;
}
@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(20px,-30px) scale(1.05); }
}

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.hero-chips {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: .82rem;
  font-weight: 500;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.hero-chip .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 1.6s ease-in-out infinite;
}
.hero-title { margin-bottom: 22px; }
.hero-title .script {
  display: block;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-sub {
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 36px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--accent);
  font-weight: 500;
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* Keyframe for the green dot on .hero-chip */
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(75,139,107,.5); }
  50%     { box-shadow: 0 0 0 8px rgba(75,139,107,0); }
}

/* — Sections / Section heading — */
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

/* — Service cards — */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  padding: 36px 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: transform .35s var(--ease-out),
              border-color .35s var(--ease-out),
              box-shadow .35s var(--ease-out);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 22px;
  transition: transform .35s var(--ease-spring);
}
.service-card:hover .service-icon { transform: scale(1.08) rotate(-4deg); }
.service-icon svg { width: 28px; height: 28px; }
.service-title { margin-bottom: 10px; }
.service-desc { color: var(--text-soft); margin-bottom: 18px; font-size: .95rem; }
.service-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}
.service-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  font-size: .9rem;
  color: var(--text-soft);
}
.service-list li:last-child { border-bottom: none; }
.service-list .price { color: var(--accent); font-weight: 600; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--accent);
}
.service-link svg { transition: transform .3s var(--ease-spring); width: 16px; height: 16px; }
.service-link:hover svg { transform: translateX(4px); }

/* — About / Values — */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  aspect-ratio: 5 / 6;
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, var(--rose-100), var(--gold-400));
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: zoom-in;
}
[data-theme="dark"] .about-image { background: linear-gradient(160deg, var(--ink-800), var(--ink-700)); }

/* Photo always fills the entire card — no circle, no hover effect. */
.about-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-xl);
}

/* Logo variant: small round logo centered on the gradient card (homepage
   "Rreth nesh"). Stays as-is — never full-size, no hover. */
.about-image--logo img {
  top: 50%;
  left: 50%;
  width: 60%;
  max-width: 260px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(40, 26, 18, .22);
  transform: translate(-50%, -50%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.value-item {
  padding: 24px;
  background: var(--bg-soft);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  transition: transform .3s var(--ease-out), background .3s var(--ease-out);
}
.value-item:hover { transform: translateY(-4px); background: var(--accent-soft); }
.value-num {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.value-title { font-size: 1.1rem; margin-bottom: 6px; }
.value-desc { font-size: .9rem; color: var(--text-soft); margin: 0; }

/* — Gallery curated (museum/editorial layout) — */

/* Filters: thin editorial chips with underline on active. */
.filters {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-bottom: 0;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.filter-btn {
  background: transparent;
  border: 0;
  padding: 4px 0;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--text-mute);
  cursor: pointer;
  position: relative;
  transition: color .3s var(--ease-out);
}
.filter-btn:hover { color: var(--text); }
.filter-btn.active { color: var(--accent); }
.filter-btn.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 1px;
  background: var(--accent);
}

/* Grid: 3-up desktop, 2-up tablet, 1-up mobile. Generous whitespace. */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px 40px;
  margin-top: 64px;
  counter-reset: piece;
}
@media (max-width: 980px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 56px 24px; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; gap: 56px; }
}

.gallery-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  cursor: zoom-in;
  counter-increment: piece;
}

/* Photo frame: portrait by default, varied by nth-child for rhythm. */
.gallery-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-soft);
  border-radius: 2px;
  border: 1px solid var(--border);
  margin-bottom: 22px;
  transition: box-shadow .5s var(--ease-out);
}
.gallery-item:nth-child(4n+1) .gallery-frame { aspect-ratio: 3/4; }
.gallery-item:nth-child(7n+3) .gallery-frame { aspect-ratio: 1; }
.gallery-item:nth-child(11n+5) .gallery-frame { aspect-ratio: 4/3; }
.gallery-item:hover .gallery-frame { box-shadow: var(--shadow-lg); }

.gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 1.4s var(--ease-out);
}
.gallery-item:hover .gallery-photo { transform: scale(1.05); }

/* Plaque-style caption. Always visible — that's the museum feel. */
.gallery-caption {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 2px;
}
.gallery-num::before {
  content: "Nr. " counter(piece, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--text-mute);
  display: block;
  margin-bottom: 2px;
}
.gallery-title {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: -.005em;
  color: var(--text);
  margin: 0;
  line-height: 1.3;
}
.gallery-desc {
  font-size: .82rem;
  color: var(--text-soft);
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,8,7,.92);
  backdrop-filter: blur(8px);
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease-out);
  padding: 40px;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-inner {
  margin: 0;
  max-width: min(720px, 90vw);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  transform: scale(.97);
  opacity: 0;
  transition: transform .45s var(--ease-spring), opacity .35s var(--ease-out);
}
.lightbox.open .lightbox-inner { transform: scale(1); opacity: 1; }
.lightbox-photo {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  background: var(--bg-soft);
}
.lightbox-plate {
  text-align: center;
  padding: 0 12px;
  max-width: 520px;
  color: #fff;
}
.lightbox-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -.005em;
  margin: 0 0 6px;
}
.lightbox-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  font-style: italic;
  margin: 0;
  line-height: 1.5;
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s var(--ease-out), transform .2s var(--ease-spring);
}
.lightbox-close:hover { background: rgba(255,255,255,.2); transform: rotate(90deg); }

/* — Testimonials — */
.testimonials {
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  position: relative;
  transition: transform .3s var(--ease-out);
}
.testimonial:hover { transform: translateY(-4px); }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--accent);
  line-height: 1;
  position: absolute;
  top: 14px; left: 20px;
  opacity: .35;
}
.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 22px;
  color: var(--text);
  padding-top: 18px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}
.author-name { font-weight: 600; font-size: .95rem; color: var(--text); }
.author-meta { font-size: .82rem; color: var(--text-soft); }
.stars { display: inline-flex; gap: 2px; color: var(--accent-2); }
.stars svg { width: 14px; height: 14px; }

/* — CTA banner — */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--rose-500), var(--gold-500));
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.2), transparent 50%);
}
.cta-banner h2, .cta-banner p { color: #fff; position: relative; }
.cta-banner .btn--white {
  background: #fff;
  color: var(--accent);
  position: relative;
}
.cta-banner .btn--white:hover { background: var(--ink-50); color: var(--accent); }

/* — Forms — */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.label {
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 500;
}
.input, .select, .textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  color: var(--text);
  font-family: inherit;
  font-size: .95rem;
  transition: border-color .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}
.input::placeholder, .textarea::placeholder { color: var(--text-mute); }
.textarea { resize: vertical; min-height: 130px; }
.field-error {
  color: var(--danger);
  font-size: .82rem;
  display: none;
}
.field.invalid .input,
.field.invalid .select,
.field.invalid .textarea { border-color: var(--danger); }
.field.invalid .field-error { display: block; }

/* — Modal — */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,8,7,.6);
  backdrop-filter: blur(6px);
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease-out);
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  transform: scale(.92) translateY(20px);
  transition: transform .35s var(--ease-spring);
  box-shadow: var(--shadow-lg);
}
.modal-backdrop.open .modal { transform: scale(1) translateY(0); }
.modal-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--success);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  animation: popIn .5s var(--ease-spring) both;
}
.modal-icon svg { width: 36px; height: 36px; }
@keyframes popIn {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); }
}
.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* — Toast — */
.toast-stack {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 130;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
}
.toast {
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-left: 3px solid var(--accent);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transform: translateX(120%);
  opacity: 0;
  animation: toastIn .5s var(--ease-spring) forwards;
  color: var(--text);
}
.toast.toast--success { border-left-color: var(--success); }
.toast.toast--error   { border-left-color: var(--danger); }
.toast.toast--info    { border-left-color: var(--accent-2); }
.toast.leaving { animation: toastOut .35s var(--ease-out) forwards; }
@keyframes toastIn {
  to { transform: translateX(0); opacity: 1; }
}
@keyframes toastOut {
  to { transform: translateX(120%); opacity: 0; }
}
.toast-icon { color: var(--accent); margin-top: 2px; }
.toast--success .toast-icon { color: var(--success); }
.toast--error   .toast-icon { color: var(--danger); }
.toast-title { font-weight: 600; font-size: .92rem; margin: 0 0 2px; color: var(--text); }
.toast-msg   { font-size: .85rem; color: var(--text-soft); margin: 0; line-height: 1.4; }

/* — Spinner / Loading — */
.spinner {
  width: 22px;
  height: 22px;
  border: 2.5px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin .8s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

.btn.is-loading {
  pointer-events: none;
  opacity: .85;
}
.btn.is-loading .btn-label { visibility: hidden; }
.btn.is-loading::before {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  border: 2.5px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity .5s var(--ease-out), visibility .5s;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-mark {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: -.04em;
  box-shadow: var(--shadow-lg);
  animation: loaderPulse 1.4s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(200,127,96,.4); }
  50%     { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(200,127,96,0); }
}
.loader-label {
  font-size: .85rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* — Empty state — */
.empty {
  text-align: center;
  padding: 60px 20px;
  border: 1px dashed var(--border-strong);
  border-radius: var(--r-lg);
  background: var(--bg-soft);
}
.empty-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* — FAQ — */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s var(--ease-out);
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: inherit;
}
.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform .3s var(--ease-spring);
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease-out), padding .3s var(--ease-out);
  padding: 0 24px;
  color: var(--text-soft);
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }

/* — Footer — */
.footer {
  background: var(--ink-950);
  color: var(--ink-200);
  padding: 80px 0 32px;
  position: relative;
}
[data-theme="dark"] .footer { background: #050403; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer h4 {
  color: var(--ink-100);
  font-size: .92rem;
  font-family: var(--font-body);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}
.footer p, .footer a { color: var(--ink-300); font-size: .92rem; }
.footer a:hover { color: var(--rose-300); }
.footer-brand .brand-name { color: var(--ink-100); }
.footer-brand p { max-width: 320px; margin: 16px 0 22px; }
.footer-links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--ink-300);
  font-size: .92rem;
}
.footer-contact svg {
  width: 16px; height: 16px;
  color: var(--rose-300);
  margin-top: 4px;
  flex-shrink: 0;
}
.socials {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-200);
  transition: background .2s var(--ease-out),
              border-color .2s var(--ease-out),
              transform .2s var(--ease-spring);
}
.social-link:hover {
  background: var(--rose-500);
  border-color: var(--rose-500);
  color: #fff;
  transform: translateY(-3px);
}
.social-link svg { width: 17px; height: 17px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom small { color: var(--ink-300); font-size: .82rem; }

/* — Trust signals strip — */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  padding: 24px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 12px;
}
.trust-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-text strong { display: block; color: var(--text); font-size: .95rem; }
.trust-text span { font-size: .82rem; color: var(--text-soft); }

/* — Page header — */
.page-header {
  padding: calc(var(--nav-h) + 80px) 0 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  top: 30%; left: 50%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 60%);
  filter: blur(60px);
  transform: translate(-50%, -50%);
  z-index: 0;
}
.page-header > * { position: relative; z-index: 1; }
.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--text-soft);
  margin-top: 14px;
}
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .sep { color: var(--text-mute); }

/* — Confetti — */
.confetti {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 125;
  overflow: hidden;
}
.confetti span {
  position: absolute;
  top: -10px;
  width: 8px; height: 14px;
  background: var(--accent);
  opacity: .9;
  animation: confettiFall 2.4s ease-out forwards;
}
@keyframes confettiFall {
  0%   { transform: translateY(0) rotate(0); opacity: 1; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

/* — Scroll reveal — */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .14s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .23s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .32s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .41s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .50s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
}

/* — WhatsApp floating button — */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 14px 16px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  font-family: inherit;
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .35), 0 2px 6px rgba(37, 211, 102, .25);
  cursor: pointer;
  z-index: 75;
  transition: transform .25s var(--ease-spring), box-shadow .25s var(--ease-out);
  animation: waPulse 2.4s ease-in-out infinite;
}
.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.03);
  color: #fff;
  box-shadow: 0 14px 32px rgba(37, 211, 102, .45), 0 4px 10px rgba(37, 211, 102, .3);
}
.whatsapp-fab svg { width: 22px; height: 22px; }
.whatsapp-fab .wa-label {
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-width .35s var(--ease-out), opacity .25s var(--ease-out), margin .35s var(--ease-out);
  margin-right: -8px;
}
.whatsapp-fab:hover .wa-label,
.whatsapp-fab.expanded .wa-label {
  max-width: 200px;
  opacity: 1;
  margin-right: 0;
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 8px 24px rgba(37, 211, 102, .35), 0 0 0 0 rgba(37, 211, 102, .5); }
  50%     { box-shadow: 0 8px 24px rgba(37, 211, 102, .35), 0 0 0 14px rgba(37, 211, 102, 0); }
}
@media (max-width: 720px) {
  /* Sit at the bottom-right corner (was floating too high). The to-top
     button lives bottom-left on mobile, so there is no overlap. */
  .whatsapp-fab { bottom: 18px; right: 16px; padding: 14px; }
  .whatsapp-fab .wa-label { display: none; }
}
@supports (bottom: env(safe-area-inset-bottom)) {
  @media (max-width: 720px) {
    .whatsapp-fab { bottom: calc(18px + env(safe-area-inset-bottom)); }
  }
}

/* — Before / After slider — */
.ba-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.ba-slider {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  cursor: ew-resize;
  user-select: none;
  background: var(--bg-soft);
}
.ba-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
}
.ba-img--before {
  background: linear-gradient(135deg, #5a4f48, #2a2421);
}
.ba-img--after {
  background: linear-gradient(135deg, var(--rose-300), var(--gold-400), var(--rose-500));
  clip-path: inset(0 0 0 50%);
  transition: clip-path .05s linear;
}
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(0,0,0,.1), 0 0 20px rgba(0,0,0,.25);
  pointer-events: none;
  transition: left .05s linear;
}
.ba-handle::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 42px; height: 42px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  display: flex;
}
.ba-handle::after {
  content: '⇄';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--accent);
  font-size: 1rem;
  font-weight: 900;
  z-index: 1;
}
.ba-label {
  position: absolute;
  top: 14px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  pointer-events: none;
}
.ba-label--before { left: 14px; }
.ba-label--after { right: 14px; }
.ba-caption {
  margin-top: 10px;
  text-align: center;
  font-size: .9rem;
  color: var(--text-soft);
  font-weight: 500;
}

/* — Custom calendar — */
.cal-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  gap: 16px;
}
.cal-header h4 {
  margin: 0;
  font-size: 1.2rem;
  text-transform: capitalize;
}
.cal-nav {
  display: inline-flex;
  gap: 6px;
}
.cal-nav button {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s var(--ease-out), transform .2s var(--ease-spring);
}
.cal-nav button:hover { background: var(--accent-soft); transform: scale(1.06); }
.cal-nav button:disabled { opacity: .35; cursor: not-allowed; transform: none; }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.cal-dow {
  text-align: center;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 600;
  padding: 8px 0;
}
.cal-day {
  aspect-ratio: 1;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg-soft);
  font-family: inherit;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all .2s var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.cal-day:hover:not(:disabled):not(.selected) {
  border-color: var(--accent);
  background: var(--accent-soft);
  transform: translateY(-2px);
}
.cal-day:disabled, .cal-day.muted {
  color: var(--text-mute);
  cursor: not-allowed;
  background: transparent;
  border-color: transparent;
}
.cal-day.today {
  border-color: var(--accent);
  color: var(--accent);
}
.cal-day.selected {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0807;
  box-shadow: var(--shadow-glow);
}
.cal-day.today::after {
  content: '';
  position: absolute;
  bottom: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
}
.cal-day.selected::after { background: #0a0807; }

.cal-slots {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px dashed var(--border);
}
.cal-slots-head {
  font-size: .85rem;
  color: var(--text-soft);
  margin-bottom: 14px;
  letter-spacing: .04em;
}
.cal-slots-head strong { color: var(--accent); text-transform: capitalize; }
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 8px;
}
.slot-btn {
  padding: 12px 8px;
  border-radius: var(--r-md);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  font-family: inherit;
  font-weight: 600;
  font-size: .92rem;
  color: var(--text);
  cursor: pointer;
  transition: all .2s var(--ease-out);
}
.slot-btn:hover:not(:disabled):not(.selected) {
  border-color: var(--accent);
  background: var(--accent-soft);
  transform: translateY(-2px);
}
.slot-btn:disabled {
  cursor: not-allowed;
}
.slot-btn:disabled:not([data-state]) {
  opacity: .35;
  text-decoration: line-through;
}
/* Booked slot — clearly visible, not just dimmed */
.slot-btn[data-state="booked"] {
  background: rgba(184, 84, 80, 0.06);
  border-color: rgba(184, 84, 80, 0.45);
  color: #b85450;
  opacity: 1;
  padding-top: 8px;
  padding-bottom: 6px;
  position: relative;
}
.slot-btn[data-state="booked"] .slot-time {
  text-decoration: line-through;
  font-weight: 700;
}
.slot-btn[data-state="booked"]::after {
  content: 'E ZËNË';
  display: block;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
  margin-top: 2px;
  color: #b85450;
}
[data-theme="dark"] .slot-btn[data-state="booked"] {
  background: rgba(220, 110, 105, 0.08);
  border-color: rgba(220, 110, 105, 0.4);
  color: #e08680;
}
[data-theme="dark"] .slot-btn[data-state="booked"]::after { color: #e08680; }

/* Overlap with another booking (not exact, but conflicts) */
.slot-btn[data-state="conflict"] {
  background: rgba(200, 153, 104, 0.06);
  border-color: rgba(200, 153, 104, 0.35);
  color: #c89968;
  opacity: 1;
  padding-top: 8px;
  padding-bottom: 6px;
}
.slot-btn[data-state="conflict"] .slot-time {
  text-decoration: line-through;
  opacity: .75;
}
.slot-btn[data-state="conflict"]::after {
  content: 'PA HAPËSIRË';
  display: block;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  margin-top: 2px;
  color: #c89968;
}

/* Past time on today */
.slot-btn[data-state="past"] {
  opacity: .4;
  text-decoration: line-through;
}

/* Slots legend */
.slots-legend {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  font-size: .74rem;
  color: var(--text-soft);
}
.slots-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
}
.slots-legend-dot {
  width: 11px; height: 11px;
  border-radius: 3px;
  border: 2px solid;
  flex-shrink: 0;
}
.slots-legend-dot--free { border-color: var(--border-strong); background: var(--surface); }
.slots-legend-dot--booked { background: rgba(184, 84, 80, 0.15); border-color: rgba(184, 84, 80, 0.55); }
.slots-legend-dot--conflict { background: rgba(200, 153, 104, 0.15); border-color: rgba(200, 153, 104, 0.5); }
.slots-duration-hint {
  margin-top: 10px;
  text-align: center;
  font-size: .78rem;
  color: var(--text-soft);
}
.slots-duration-hint strong { color: var(--accent); }

/* Calendar day with bookings dot */
.cal-day.has-bookings {
  position: relative;
}
.cal-day.has-bookings::before {
  content: '';
  position: absolute;
  top: 6px; right: 6px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #b85450;
  box-shadow: 0 0 0 2px var(--bg-soft);
}
.cal-day.selected.has-bookings::before { box-shadow: 0 0 0 2px var(--accent); }
.slot-btn.selected {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0807;
}
.cal-empty {
  text-align: center;
  color: var(--text-mute);
  padding: 24px;
  font-size: .9rem;
}
.cal-cta {
  margin-top: 22px;
  padding: 18px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cal-cta-info { font-size: .92rem; color: var(--text-soft); }
.cal-cta-info strong { color: var(--text); }
.cal-cta-info span { color: var(--accent); font-weight: 700; }
.cal-note {
  font-size: .85rem;
  color: var(--text-soft);
  text-align: center;
  margin-top: 14px;
}
.cal-note a { font-weight: 600; }

.tabs {
  display: inline-flex;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 4px;
  gap: 4px;
  margin-bottom: 24px;
}
.tab-btn {
  padding: 10px 22px;
  border: none;
  background: transparent;
  color: var(--text-soft);
  font-family: inherit;
  font-size: .88rem;
  font-weight: 600;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: all .25s var(--ease-out);
}
.tab-btn.active {
  background: var(--accent);
  color: #0a0807;
  box-shadow: var(--shadow-sm);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn .35s var(--ease-out); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* — Real gallery photos support — */
.gallery-item img.gallery-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;                /* always above the gradient placeholder */
  transition: transform .6s var(--ease-out);
}
.gallery-item .overlay { z-index: 2; }   /* hover overlay above the photo */
.gallery-item:hover img.gallery-photo { transform: scale(1.06); }

/* — Scroll to top — */
.to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-spring), background .2s var(--ease-out);
  z-index: 70;
}
.to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top:hover { background: var(--accent-2); }

/* — Booking specific — */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.booking-info {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  padding: 36px;
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}
.booking-info ul {
  list-style: none;
  padding: 0; margin: 20px 0 0;
}
.booking-info li {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-soft);
  font-size: .92rem;
}
.booking-info li:last-child { border-bottom: none; }
.booking-info svg { color: var(--accent); flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; }

.summary-card {
  margin-top: 24px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: .92rem;
  color: var(--text-soft);
}
.summary-row strong { color: var(--text); }
.summary-row.total {
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 14px;
  font-size: 1.05rem;
}
.summary-row.total strong { color: var(--accent); font-family: var(--font-display); font-size: 1.3rem; }

/* — Map (contact) — */
.map-frame {
  width: 100%;
  height: 380px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  position: relative;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* — Skip link — */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--accent);
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  z-index: 300;
}
.skip-link:focus { left: 8px; }

/* — Responsive —
   Breakpoints: 980 (tablet) · 720 (phone landscape / small tablet) ·
   600 (phone) · 400 (small phone). Mobile rules live HERE for findability,
   even for components defined later in the file (booking wizard, calendar). */
@media (max-width: 980px) {
  .about-grid, .booking-grid { grid-template-columns: 1fr; gap: 40px; }
  .booking-info { position: static; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 2rem; }
  .toast-stack { left: 16px; right: 16px; bottom: 16px; max-width: none; }
  .to-top { left: 16px; bottom: 16px; }
}

/* — Phone (≤600px): the main mobile pass — */
@media (max-width: 600px) {
  /* Tighter gutters so content isn't cramped against the edges */
  .container, .nav-inner { padding-left: 16px; padding-right: 16px; }
  .section { padding: 56px 0; }
  .page-header { padding: calc(var(--nav-h) + 36px) 0 40px; }

  /* Brand: keep it from crowding the toggles */
  .brand-name { font-size: .95rem; letter-spacing: .12em; }
  .brand-mark { width: 36px; height: 36px; }

  /* Hero: full-width stacked CTAs */
  .hero-sub { font-size: 1rem; }
  .hero-ctas { width: 100%; }
  .hero-ctas .btn { flex: 1 1 auto; justify-content: center; }
  .hero-stats { gap: 20px; width: 100%; }

  /* Booking wizard */
  .wizard-card { padding: 22px 16px; }
  .booking-section { margin-bottom: 26px; }
  .svc-cats { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: repeat(auto-fit, minmax(min(140px, 100%), 1fr)); gap: 10px; }
  .svc-card { padding: 14px 12px; }
  .svc-name { font-size: .92rem; }
  .svc-meta { font-size: .78rem; gap: 6px; }

  /* Stepper: shrink so both steps fit comfortably */
  .stepper { gap: 6px; margin-bottom: 36px; }
  .step-item { gap: 8px; }
  .step-circle { width: 32px; height: 32px; font-size: .85rem; }
  .step-label { font-size: .8rem; }

  /* Summary + actions stack to full width */
  .summary-pill { flex-wrap: wrap; padding: 16px; gap: 12px; }
  .summary-pill .btn { width: 100%; }
  .step-actions { flex-direction: column-reverse; }
  .step-actions .btn { width: 100%; min-width: 0; }

  /* Calendar + slots */
  .cal-grid { gap: 4px; }
  .cal-day { font-size: .85rem; border-radius: 10px; }
  .cal-dow { font-size: .65rem; padding: 6px 0; }
  .slots-grid { grid-template-columns: repeat(auto-fill, minmax(72px, 1fr)); gap: 6px; }
  .slot-btn { padding: 10px 6px; font-size: .88rem; }
  .bk-slots-panel { padding: 16px; min-height: 0; }

  /* Modal fits small screens */
  .modal { padding: 28px 20px; }
  .modal-actions { flex-direction: column; }
  .modal-actions .btn { width: 100%; }
}

/* — Small phone (≤400px) — */
@media (max-width: 400px) {
  .svc-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .brand-name { font-size: .85rem; letter-spacing: .08em; }
}


/* — Booking wizard (lifted from rezervo.html on consolidation) — */
/* — Wizard stepper — */
.stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 520px;
  margin: 0 auto 48px;
}
.step-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.step-circle {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 2px solid var(--border-strong);
  color: var(--text-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .95rem;
  transition: all .35s var(--ease-spring);
}
.step-item.active .step-circle {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0807;
  box-shadow: var(--shadow-glow);
  transform: scale(1.06);
}
.step-item.done .step-circle {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0807;
}
.step-item.done .step-circle::before {
  content: '✓'; font-size: 1.1rem;
}
.step-item.done .step-circle span { display: none; }
.step-label {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: .02em;
}
.step-item.active .step-label,
.step-item.done .step-label { color: var(--text); }
.step-line {
  flex: 1;
  min-width: 30px;
  height: 2px;
  background: var(--border-strong);
  border-radius: 2px;
  transition: background .35s var(--ease-out);
}
.step-line.done { background: var(--accent); }

/* — Wizard panels — */
.wizard {
  max-width: 920px;
  margin: 0 auto;
}
.wizard-step { display: none; }
.wizard-step.active {
  display: block;
  animation: stepIn .4s var(--ease-out);
}
@keyframes stepIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.wizard-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.booking-section {
  margin-bottom: 32px;
}
.booking-section:last-child { margin-bottom: 0; }
.booking-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.booking-section-title::before {
  content: ''; width: 20px; height: 1px; background: var(--accent);
}

/* — Service grid — */
.svc-grid {
  display: grid;
  /* min(…,100%) keeps a single card from ever exceeding the card width */
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 12px;
}
.svc-card {
  padding: 18px 16px;
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg-soft);
  cursor: pointer;
  transition: all .25s var(--ease-out);
  text-align: left;
  font-family: inherit;
  color: var(--text);
  position: relative;
  overflow: hidden;
}
.svc-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.svc-card.selected {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: var(--shadow-glow);
}
.svc-card.selected::after {
  content: '✓';
  position: absolute;
  top: 10px; right: 12px;
  width: 22px; height: 22px;
  background: var(--accent);
  color: #0a0807;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
}
.svc-icon {
  display: inline-flex;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0807;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.svc-name {
  display: block;
  font-weight: 700;
  font-size: .98rem;
  margin-bottom: 2px;
}
.svc-meta {
  font-size: .82rem;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}
.svc-price { color: var(--accent); font-weight: 700; }
.svc-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-mute); }
/* SVG icons inside the round service badge (replaces old emoji). */
.svc-icon svg { width: 18px; height: 18px; }

/* — Service category chooser (step 1a) — */
/* [hidden] must win over .svc-grid/.svc-cats display rules. */
.svc-cats[hidden], .svc-sub[hidden], .svc-group[hidden] { display: none; }

.svc-cats {
  display: grid;
  /* auto-fit + min(…,100%) = never wider than the card, on any screen */
  grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr));
  gap: 12px;
}
.svc-cat {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;            /* allow the flex row to shrink instead of overflowing */
  padding: 18px 16px;
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg-soft);
  text-align: left;
  font-family: inherit;
  color: var(--text);
  transition: border-color .25s var(--ease-out), transform .25s var(--ease-spring), box-shadow .25s var(--ease-out);
}
.svc-cat:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.svc-cat-ico {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0807;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.svc-cat-ico svg { width: 24px; height: 24px; }
.svc-cat-text { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.svc-cat-name { font-weight: 700; font-size: 1.05rem; overflow-wrap: anywhere; }
.svc-cat-desc { font-size: .82rem; color: var(--text-soft); overflow-wrap: anywhere; }
.svc-cat-arrow { width: 18px; height: 18px; color: var(--text-mute); flex-shrink: 0; }

.svc-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--accent);
  font-family: inherit;
  font-weight: 600;
  font-size: .9rem;
  padding: 4px 0;
  margin-bottom: 18px;
  transition: color .2s var(--ease-out);
}
.svc-back svg { width: 16px; height: 16px; }
.svc-back:hover { color: var(--accent-2); }

/* — Booking calendar (richer than default) — */
.bk-cal-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 760px) {
  .bk-cal-layout { grid-template-columns: 1fr; gap: 20px; }
}
.bk-slots-panel {
  padding: 20px;
  background: var(--bg-soft);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  min-height: 280px;
}
.bk-slots-head {
  font-size: .85rem;
  color: var(--text-soft);
  margin-bottom: 14px;
  letter-spacing: .04em;
}
.bk-slots-head strong {
  color: var(--accent);
  text-transform: capitalize;
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.bk-empty {
  color: var(--text-mute);
  text-align: center;
  padding: 40px 16px;
  font-size: .9rem;
}
.bk-empty svg { width: 32px; height: 32px; opacity: .4; margin-bottom: 10px; }

/* Step 2: summary card */
.summary-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--accent-soft), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 28px;
}
.summary-pill-icon {
  width: 46px; height: 46px;
  background: var(--accent);
  color: #0a0807;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.summary-pill-info { flex: 1; }
.summary-pill-info h4 { margin: 0 0 4px; font-size: 1.05rem; }
.summary-pill-info p { margin: 0; font-size: .88rem; color: var(--text-soft); }
.summary-pill-info p strong { color: var(--text); }

.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.step-actions .btn { min-width: 160px; }
