/* ═══════════════════════════════════════════════════════
   PRO FADE BARBER — Design System 2026
   Dark premium barbershop aesthetic
═══════════════════════════════════════════════════════ */

:root {
  --bg:         #0a0a0a;
  --surface:    #111111;
  --surface2:   #181818;
  --border:     #222222;
  --gold:       #C9A96A;
  --gold-light: #D4AD7A;
  --gold-dim:   rgba(201,169,106,0.14);
  --wood-warm:  rgba(180,130,70,0.06);
  --text:           #ffffff;
  --text-muted:     #888888;
  --text-soft:      #cccccc;
  --red:            #e05252;
  --green:          #4caf7d;

  /* Semantic aliases — used by review/modal components */
  --text-primary:   #ffffff;
  --text-secondary: #cccccc;
  --text-dim:       #888888;
  --bg-card:        #181818;
  --bg-secondary:   #111111;

  /* Brand green — matches shop interior (deep forest green + LED) */
  --brand-green:     #1a3d2e;
  --brand-green-mid: #1e5542;
  --brand-green-dim: rgba(26,61,46,0.15);
  --brand-green-glow:rgba(30,85,66,0.25);

  --radius:     10px;
  --radius-lg:  16px;
  --shadow:     0 4px 24px rgba(0,0,0,0.4);
  --transition: 0.2s ease;
  --max-w:      1160px;
}

/* ── SKIP LINK (accessibility) ─────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--gold);
  color: #000;
  padding: 10px 20px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700;
  font-size: 14px;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── CONTAINER ─────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: #000;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,169,106,0.35);
}
.btn-primary:hover::after {
  left: 130%;
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 10px 20px;
  font-size: 13px;
}
.btn-ghost:hover {
  background: var(--gold);
  color: #000;
}
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ── SECTION WRAPPER ───────────────────────────────── */
.section {
  padding: 80px 0;
}
.section-sm { padding: 48px 0; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
}

/* ═══════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.nav.scrolled { border-bottom-color: var(--border); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  height: 60px;
  min-height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
  opacity: 0.9;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.28s cubic-bezier(0.16,1,0.3,1);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  margin-left: 8px;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 70px 0 0 0;
  background: var(--bg);
  z-index: 99;
  padding: 32px 24px;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-soft);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 16px; }

/* Nav Call button — override inline style with class */
.nav-cta .btn-call {
  padding: 0 16px;
  font-size: 13px;
  min-height: 44px;
}

@media (max-width: 768px) {
  .nav-links, .nav-cta .btn-secondary { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner     { height: 70px; }
  .nav-logo-img  { height: 50px; }
  .hero-content  { padding: 100px 0 60px; }
}

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -100px;
  background:
    linear-gradient(135deg, rgba(10,10,10,0.93) 0%, rgba(14,38,28,0.72) 50%, rgba(10,10,10,0.90) 100%),
    url('/videos.imagens/hero.webp') center/cover no-repeat;
  will-change: transform;
}

/* Animated grain overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

/* Brand accent line (green → gold) */
.hero-bg::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, rgba(201,169,106,0.25), var(--gold), transparent);
  opacity: 0.8;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,169,106,0.25);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 24px;
  max-width: 640px;
}
.hero h1 em,
.hero-accent {
  font-style: normal;
  color: var(--gold);
}

/* Barbers section gradient background */
.section--barbers {
  background: linear-gradient(180deg, var(--surface) 0%, rgba(14,38,28,0.18) 50%, var(--surface) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Reviews section background */
.section--reviews {
  background: var(--bg-secondary);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-soft);
  margin-bottom: 40px;
  max-width: 440px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.shop-status-badge {
  font-size: 14px;
  font-weight: 500;
}
.shop-status-badge.open   { color: #22c55e; }
.shop-status-badge.closed { color: rgba(255,255,255,0.45); }
.hero-info-dot {
  color: rgba(255,255,255,0.25);
  font-size: 10px;
}
.hero-info-secondary {
  color: rgba(234,234,234,0.75);
  font-size: 13px;
  font-weight: 400;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-soft);
}
.hero-proof-dot {
  width: 3px; height: 3px;
  background: var(--border);
  border-radius: 50%;
}

.service-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
  margin-bottom: 5px;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════ */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.85;
}
.trust-icon {
  width: 32px; height: 32px;
  background: var(--gold-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { color: var(--gold); }
.trust-text { min-width: 0; }
.trust-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}
.trust-text span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.25;
  margin-top: 2px;
}
.trust-stars { color: #EAB308; font-size: 13px; letter-spacing: 1px; }
.trust-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .trust-bar { padding: 20px 0; }
  .trust-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 12px;
    justify-items: stretch;
    padding: 0 4px;
  }
  .trust-divider { display: none; }
  .trust-item {
    opacity: 1;
    align-items: flex-start;
    gap: 10px;
    min-height: 44px;
    padding: 4px 6px;
  }
  .trust-icon {
    width: 28px; height: 28px;
    border-radius: 7px;
    margin-top: 1px;
  }
  .trust-text strong { font-size: 13px; line-height: 1.2; }
  .trust-text span {
    font-size: 11.5px;
    line-height: 1.25;
    margin-top: 2px;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
}

/* TESTIMONIAL CARD */
.testimonial-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  max-width: 380px;
}
.testimonial-card p {
  font-size: 14px;
  color: var(--text-soft);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 10px;
}
.testimonial-card .author {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: border-color var(--transition), transform var(--transition);
  cursor: default;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(180,130,70,0.1);
}
.service-card.featured {
  border-color: rgba(201,169,106,0.6);
  border-width: 2px;
  background: linear-gradient(135deg, var(--surface) 0%, rgba(201,169,106,0.09) 100%);
  transform: scale(1.02);
}
.service-card.featured:hover {
  transform: scale(1.02) translateY(-2px);
}
.service-info {}
.service-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.service-duration {
  font-size: 12px;
  color: var(--text-muted);
}
.service-card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
  min-width: 80px;
}
.service-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  white-space: nowrap;
}
.service-card--clickable {
  cursor: pointer;
}
.service-card--clickable:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.service-book-arrow {
  font-size: 20px;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  transition: transform 0.15s;
}
.service-card--clickable:hover .service-book-arrow {
  transform: translateX(4px);
}
.service-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 100px;
  background: rgba(201,169,106,0.15);
  color: var(--gold);
  border: 1px solid rgba(201,169,106,0.3);
  margin-top: 6px;
}
@media (max-width: 520px) {
  .service-card { gap: 10px; padding: 16px; }
  .service-card-right { min-width: 70px; }
  .btn-book-svc { padding: 5px 12px; font-size: 11px; }
  .service-price { font-size: 17px; }
}

.services-note {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,169,106,0.2);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 10px;
}
.services-cta {
  margin-top: 40px;
  text-align: center;
}

/* ═══════════════════════════════════════════════════
   BARBERS
═══════════════════════════════════════════════════ */
.barbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.barbers-grid[data-count="1"] {
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}
.barbers-grid[data-count="2"] {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 360px) {
  .barbers-grid { grid-template-columns: 1fr; }
}
.barber-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.barber-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,169,106,0.4);
}
.barber-photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.barber-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.barber-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 13px;
}
.barber-photo-placeholder .icon {
  width: 56px; height: 56px;
  background: var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.barber-body { padding: 24px; }
.barber-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.barber-title {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 8px;
}
.barber-avail {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.barber-avail::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.barber-avail.available { color: #4ade80; }
.barber-avail.available::before { background: #4ade80; box-shadow: 0 0 6px #4ade8088; }
.barber-avail.full  { color: var(--text-muted); }
.barber-avail.full::before  { background: var(--text-muted); }
.barber-avail.off   { color: var(--text-muted); padding:0; background:none; display:flex; flex-direction:column; gap:3px; }
.barber-avail.off::before   { display:none; }
.barber-off-badge {
  display: inline-block;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .15rem .55rem;
  width: fit-content;
  opacity: .65;
}
.barber-off-sub {
  font-size: .72rem;
  color: var(--text-muted);
  opacity: .55;
  padding-left: 1px;
}
.btn-book-off {
  width: 100%;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: var(--radius-full, 100px);
  padding: 10px 20px;
  font-size: 13px;
  font-family: inherit;
  opacity: .4;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Barber quick-picker toggle ───────────────────────────────────────── */
.barber-picker-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius, 8px);
  color: var(--text);
  font-size: .88rem;
  font-family: inherit;
  padding: 10px 14px;
  cursor: pointer;
  text-align: left;
  transition: border-color .15s;
}
.barber-picker-toggle:hover { border-color: var(--gold); }
.barber-picker-toggle.expanded { border-color: rgba(var(--gold-rgb),.5); }
.barber-picker-chevron { margin-left: auto; font-size: .75rem; color: var(--text-muted); transition: transform .2s; }
.barber-picker-toggle.expanded .barber-picker-chevron { transform: rotate(180deg); }
.barber-avail.in-chair { color: #f6ad55; }
.barber-avail.in-chair::before { background: #f6ad55; animation: pulse 1s infinite; }
.barber-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.skill-tag {
  font-size: 11px;
  padding: 4px 10px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}
@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
}

/* ── Base cell ─────────────────────────────────────── */
.gallery-item {
  aspect-ratio: 1;
  background: var(--surface2);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border);
}

/* ── Image cells ───────────────────────────────────── */
.gallery-item--image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(0.12) saturate(1.12) contrast(1.05);
  transition: transform 0.45s ease, filter 0.35s ease;
  will-change: transform;
}
.gallery-item--image:hover img {
  transform: scale(1.04);
  filter: sepia(0.12) saturate(1.18) contrast(1.07) brightness(1.08);
}
.gallery-item--image:hover {
  box-shadow: 0 0 0 1.5px rgba(201,169,106,0.45), 0 0 18px rgba(201,169,106,0.12);
}

/* ── Video cells ───────────────────────────────────── */
.gallery-item--video video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, filter 0.3s ease;
  will-change: transform;
}
.gallery-item--video:hover video {
  transform: scale(1.04);
  filter: brightness(1.1);
}

/* Gold glow on video hover */
.gallery-item--video::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1.5px rgba(201,169,106,0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.gallery-item--video:hover::after {
  opacity: 1;
}

/* ── Overlay (play icon on video, zoom icon on image) ─ */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg {
  color: rgba(255,255,255,0.9);
  width: 32px; height: 32px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

/* Video badge */
.gallery-item--video .gallery-overlay::before {
  content: '';
  position: absolute;
  top: 10px; right: 10px;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(201,169,106,0.7);
  animation: pulse 2s infinite;
}

/* ── Cut label on image hover ──────────────────────── */
.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
}
.gallery-item:hover .gallery-label {
  opacity: 1;
  transform: translateY(0);
}

.gallery-footer {
  margin-top: 28px;
  text-align: center;
}
.gallery-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.gallery-footer a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════
   BOOKING CTA BANNER
═══════════════════════════════════════════════════ */
.booking-banner {
  background: linear-gradient(135deg, #0e0c0a 0%, #13100d 60%, #0e0c0a 100%);
  border-top: 1px solid rgba(201,169,106,0.18);
  border-bottom: 1px solid rgba(201,169,106,0.18);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.booking-banner::before {
  content: '✂';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  font-size: 220px;
  opacity: 0.03;
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}
.booking-banner::after {
  content: '';
  position: absolute;
  inset: -60px;
  background: url('/videos.imagens/barbers-working.webp') center/cover no-repeat;
  filter: blur(72px);
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}
.booking-banner-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.booking-banner h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.2;
}
.booking-banner p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 0;
}
.booking-banner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.booking-banner small {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.contact-row:hover { border-color: rgba(201,169,106,0.3); }
.contact-icon {
  width: 40px; height: 40px;
  background: var(--gold-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { color: var(--gold); }
.contact-row-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.contact-row-text a, .contact-row-text span {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  transition: color var(--transition);
}
.contact-row-text a:hover { color: var(--gold); }

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-soft);
  padding: 4px 0;
}
.hours-row .day  { color: var(--text-muted); white-space: nowrap; }
.hours-row .time { font-weight: 500; color: var(--text); white-space: nowrap; text-align: right; }

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-chip:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 420px;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(60%) invert(90%) hue-rotate(180deg);
  display: block;
}

/* ── Shop interior strip ───────────────────────────── */

/* ═══════════════════════════════════════════════════
   FOOTER — CINEMATIC BACKGROUND
═══════════════════════════════════════════════════ */
.footer {
  position: relative;
  background: url('/videos.imagens/interior-footer.jpg') center 50% / cover no-repeat;
  padding: 80px 0 52px;
  color: #fff;
  overflow: hidden;
}

/* Dark overlay — warm tones preserved, text AAA-readable */
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 6, 4, 0.84) 0%,
    rgba(12, 8, 4, 0.76) 55%,
    rgba(6, 4, 2, 0.90) 100%
  );
  pointer-events: none;
}

.footer .container { position: relative; z-index: 2; }

.footer-grid {
  display: grid;
  grid-template-columns: 200px 1fr 1fr auto;
  align-items: start;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(201,169,106,0.25);
  margin-bottom: 24px;
}

/* ── Logo col ────────────────────────────────────── */
.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-logo span { color: var(--gold); }
.footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  letter-spacing: 0.01em;
}

/* ── Section labels ──────────────────────────────── */
.footer-nav-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 2px;
  display: block;
}

/* ── Quick links ─────────────────────────────────── */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}
.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.72);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-links a:hover { color: #fff; }

.footer-social {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.footer-social a {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--transition);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer-social a:hover { color: var(--gold); }

/* ── Contact col ─────────────────────────────────── */
.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-address {
  font-style: normal;
  font-size: 13.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-address:hover { color: #fff; }
.footer-phone {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color var(--transition);
}
.footer-phone:hover { color: var(--gold); }
.footer-hours {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  line-height: 1.7;
  display: block;
}

/* ── CTA col — the hero element ──────────────────── */
.footer-cta-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.footer-cta-col .btn-primary {
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 24px rgba(201,169,106,0.35), 0 1px 4px rgba(0,0,0,0.4);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.footer-cta-col .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,169,106,0.50), 0 2px 8px rgba(0,0,0,0.5);
  background: #d4af5a;
}
.footer-cta-call {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  text-align: center;
  transition: color var(--transition);
  width: 100%;
  text-align: right;
}
.footer-cta-call:hover { color: rgba(255,255,255,0.75); }

/* ── Bottom bar ──────────────────────────────────── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy {
  font-size: 11.5px;
  color: rgba(255,255,255,0.3);
}
.footer-credit {
  font-size: 10.5px;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.02em;
}
.footer-credit a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-credit a:hover {
  color: rgba(255,255,255,0.45);
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-logo { grid-column: 1 / -1; }
  .footer-cta-col {
    align-items: flex-start;
  }
  .footer-cta-call { text-align: left; }
}

@media (max-width: 768px) {
  .footer {
    padding: 52px 0 100px;
    background-position: center 30%;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-cta-col .btn-primary {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    font-size: 15px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .footer { padding: 40px 0 100px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-logo,
  .footer-contact-col,
  .footer-cta-col { grid-column: 1; }
  .footer-cta-col { align-items: stretch; }
  .footer-cta-col .btn-primary { text-align: center; }
  .footer-cta-call { text-align: center; }
}

/* ═══════════════════════════════════════════════════
   BOOKING MODAL
═══════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
@media (min-width: 640px) {
  .modal-overlay { align-items: center; }
}

.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(40px);
  transition: transform 0.3s ease;
}
@media (min-width: 640px) {
  .modal {
    border-radius: var(--radius-lg);
    transform: translateY(0) scale(0.96);
  }
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--surface);
  z-index: 1;
}
.modal-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}
.modal-close {
  width: 44px; height: 44px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: all var(--transition);
  font-size: 18px;
  line-height: 1;
}
.modal-close:hover {
  background: var(--border);
  color: var(--text);
}

.modal-body { padding: 24px; }

/* Steps progress */
.steps-bar {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
}
.step-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--surface2);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all var(--transition);
}
.step-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}
.step-dot.done {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  transition: background var(--transition);
}
.step-line.done { background: var(--green); }

.step-panel { display: none; }
.step-panel.active { display: block; }

.step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.step-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Service selection */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
.service-option:hover { border-color: rgba(201,169,106,0.4); }
.service-option.selected {
  border-color: var(--gold);
  background: var(--gold-dim);
}
.service-option-name { font-size: 14px; font-weight: 600; color: var(--text); }
.service-option-duration { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.service-option-price { font-size: 16px; font-weight: 800; color: var(--gold); }

/* Date & time */
.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.calendar-nav button {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  width: 44px; height: 44px;
  cursor: pointer;
  font-size: 16px;
  transition: all var(--transition);
}
.calendar-nav button:hover { border-color: var(--gold); color: var(--gold); }
.calendar-month { font-size: 14px; font-weight: 700; color: var(--text); }

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 20px;
}
.cal-header {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 4px 0;
}
.cal-day {
  aspect-ratio: 1;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border-radius: 6px;
  cursor: pointer;
  color: var(--text-soft);
  transition: all var(--transition);
  border: 1.5px solid transparent;
}
.cal-day:hover:not(.disabled):not(.empty) {
  background: var(--surface2);
  border-color: rgba(201,169,106,0.3);
}
.cal-day.today { color: var(--gold); font-weight: 700; }
.cal-day.selected {
  background: var(--gold);
  color: #000;
  font-weight: 700;
  border-color: var(--gold);
}
.cal-day.disabled { opacity: 0.25; cursor: not-allowed; }
.cal-day.empty { cursor: default; }

.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.time-slot {
  padding: 9px 4px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  color: var(--text-soft);
  transition: all var(--transition);
}
.time-slot:hover { border-color: rgba(201,169,106,0.4); }
.time-slot.selected {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  font-weight: 700;
}
.time-slot.unavailable {
  opacity: 0.2;
  cursor: not-allowed;
  text-decoration: line-through;
}
.time-slot.time-slot-taken {
  opacity: 0.22;
  cursor: not-allowed;
  pointer-events: none;
}
.quick-pick-btn {
  background: rgba(201,169,106,.1);
  border: 1px solid rgba(201,169,106,.3);
  color: var(--gold);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background .15s;
}
.quick-pick-btn:hover { background: rgba(201,169,106,.2); }

/* Day navigation */
.day-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}
.day-nav .step-sub { flex: 1; text-align: center; margin: 0; }
.day-nav-btn {
  background: var(--surface2);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  border-radius: 6px;
  width: 32px;
  height: 32px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.day-nav-btn:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
.day-nav-btn:disabled { opacity: 0.25; cursor: not-allowed; }

/* Confirm step */
.booking-summary {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.summary-row:last-child { border-bottom: none; }
.summary-label { color: var(--text-muted); }
.summary-value { font-weight: 600; color: var(--text); }
.summary-price { font-size: 18px; font-weight: 800; color: var(--gold); }

.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 12px 14px;
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: border-color var(--transition);
  outline: none;
}
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--text-muted); }
select.form-input { appearance: none; cursor: pointer; }
select.form-input option { background: var(--surface2, #1a1a1a); color: var(--text, #fff); }
#nextBtn:disabled { opacity: 0.45; cursor: not-allowed; }
.barber-preview-card { display:flex; align-items:center; gap:14px; padding:14px 16px; background:var(--surface2); border:1px solid var(--border); border-radius:var(--radius); margin-top:-2px; margin-bottom:16px; }
.barber-preview-img { width:52px; height:52px; border-radius:50%; object-fit:cover; flex-shrink:0; }
.barber-preview-name { font-weight:600; font-size:15px; color:var(--text); }
.barber-preview-bio { font-size:13px; color:var(--text-muted); margin-top:3px; line-height:1.4; }

/* Modal nav */
.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  position: sticky;
  bottom: 0;
}
.modal-back {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition);
}
.modal-back:hover { color: var(--text); border-color: var(--text-muted); }

.modal-wa-help {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
  flex: 1;
  text-align: center;
}
.modal-wa-help:hover { color: #25D366; }

/* Success state */
.booking-success {
  text-align: center;
  padding: 40px 24px;
}
.success-icon {
  width: 72px; height: 72px;
  background: rgba(76,175,125,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  border: 2px solid var(--green);
}
.booking-success h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.booking-success p { color: var(--text-muted); font-size: 14px; }

/* ── BARBER PICK CARDS (in modal) ───────────────────────── */
.barber-pick-card {
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}
.barber-pick-card:hover { border-color: rgba(201,169,106,0.4); }
.barber-pick-card.selected {
  border-color: var(--gold);
  background: var(--gold-dim);
}
.barber-pick-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--gold);
  margin: 0 auto 8px;
}
.barber-pick-card.selected .barber-pick-avatar {
  background: var(--gold);
  color: #000;
}
.barber-pick-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.barber-pick-spec {
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.3;
}
.barber-pick-micro {
  font-size: 9px;
  color: var(--gold);
  opacity: .7;
  margin-top: 3px;
  line-height: 1.3;
}

/* Time grid + modal mobile fixes */
@media (max-width: 480px) {
  .time-grid { grid-template-columns: repeat(3, 1fr); }
  .modal-footer { flex-wrap: wrap; gap: 8px; }
  .modal-footer .modal-wa-help { order: 3; flex: 0 0 100%; text-align: center; }
}
@media (max-width: 360px) {
  .time-grid { grid-template-columns: repeat(3, 1fr); }
  .modal-footer .modal-back,
  .modal-footer .btn-primary { flex: 1; }
}

/* ═══════════════════════════════════════════════════
   FLOATING BOOK BTN (mobile)
═══════════════════════════════════════════════════ */
.floating-book {
  display: none !important;
}

/* ═══════════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════════ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.hidden { display: none !important; }

.loading-spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(201,169,106,0.3);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════════════ */
.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.reviews-score-block {
  display: flex;
  align-items: center;
  gap: 14px;
}
.reviews-score-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.reviews-score-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.reviews-score-stars {
  color: #EAB308;
  font-size: 18px;
  letter-spacing: 2px;
}
.reviews-score-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s;
}
.review-card:hover { border-color: var(--gold); box-shadow: 0 6px 24px rgba(180,130,70,0.09); }
.review-stars { color: #EAB308; font-size: 14px; letter-spacing: 2px; }
.review-text {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.55;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.review-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}
.review-area {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.reviews-cta { text-align: center; }

/* ═══════════════════════════════════════════════════
   CONTACT ACTIONS
═══════════════════════════════════════════════════ */
.contact-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.contact-actions .btn {
  display: flex;
  align-items: center;
}

/* ═══════════════════════════════════════════════════
   SOCIAL CHIPS
═══════════════════════════════════════════════════ */
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 40px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.social-chip:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.social-chip svg { flex-shrink: 0; }

/* footer-social styles are in the FOOTER section above */

/* ── Fade-in on scroll ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1),
              transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Stagger: parent visible immediately, children cascade ── */
.reveal-stagger {
  opacity: 1 !important;
  transform: none !important;
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s cubic-bezier(0.16,1,0.3,1),
              transform 0.55s cubic-bezier(0.16,1,0.3,1);
}
.reveal-stagger.visible > *                { opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(2)   { transition-delay: 0.08s; }
.reveal-stagger.visible > *:nth-child(3)   { transition-delay: 0.16s; }
.reveal-stagger.visible > *:nth-child(4)   { transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(5)   { transition-delay: 0.30s; }
.reveal-stagger.visible > *:nth-child(6)   { transition-delay: 0.34s; }
.reveal-stagger.visible > *:nth-child(n+7) { transition-delay: 0.38s; }

/* ── Reduced motion: skip all entrance animations ── */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
