/* ============================================================
   BARBER AND LADY - PREMIUM HAIR SALON CSS
   Mobile First | Modern & Edgy + Luxury
   ============================================================ */

/* Variables */
:root {
  --black: #0a0a0a;
  --black-soft: #111111;
  --white: #f4f0ec;
  --white-pure: #ffffff;
  --gold: #C5A059;
  --gold-light: #E6C88a;
  --gray: #8a8a8a;
  --gray-dark: #2a2a2a;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --radius: 12px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* Container */
.container { width: 92%; max-width: 1200px; margin: 0 auto; }
.narrow { max-width: 800px; }

/* Typography */
.section-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-subtitle {
  color: var(--gray);
  font-size: 16px;
  max-width: 500px;
}
.section-padding { padding: 80px 0; }

/* Reveal animation base */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black-soft);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo {
  font-family: var(--font-serif); font-size: 48px; letter-spacing: 6px;
  color: var(--gold); margin-bottom: 20px;
  animation: fadeInUp 1s ease both;
}
.preloader-line { width: 120px; height: 2px; background: rgba(255,255,255,0.1); margin: 0 auto; position: relative; overflow: hidden; border-radius: 2px; }
.preloader-line span {
  position: absolute; left: 0; top: 0; height: 100%; width: 0%;
  background: var(--gold); animation: loadLine 1.2s ease forwards;
}
@keyframes loadLine { to { width: 100%; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   CUSTOM CURSOR (desktop only)
   ============================================================ */
.cursor-dot, .cursor-outline { position: fixed; top: 0; left: 0; transform: translate(-50%, -50%); border-radius: 50%; pointer-events: none; z-index: 10000; transition: width 0.3s, height 0.3s, background 0.3s; }
.cursor-dot { width: 6px; height: 6px; background: var(--gold); }
.cursor-outline { width: 36px; height: 36px; border: 1px solid rgba(197,160,89,0.4); transition: width 0.25s, height 0.25s, border-color 0.25s; }
body:hover .cursor-outline.hovered { width: 56px; height: 56px; border-color: var(--gold); background: rgba(197,160,89,0.08); }
@media (pointer: coarse) { .cursor-dot, .cursor-outline { display: none !important; } }

/* ============================================================
   FLOATING BOOK BUTTON
   ============================================================ */
.floating-book-btn {
  position: fixed; bottom: 22px; right: 22px; z-index: 999;
  background: var(--gold); color: var(--black); font-weight: 600;
  padding: 14px 22px; border-radius: 50px; font-size: 14px;
  box-shadow: 0 8px 24px rgba(197,160,89,0.35);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.floating-book-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(197,160,89,0.45); }
.floating-book-btn::before { content: "📅"; font-size: 16px; }
@media (min-width: 1024px) { .floating-book-btn { display: none; } }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 18px 0; transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.site-header.scrolled {
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-family: var(--font-serif); font-size: 22px; font-weight: 600; letter-spacing: 1px;
}
.logo span { color: var(--gold); }

/* Mobile menu */
.menu-toggle { width: 32px; height: 24px; position: relative; display: flex; flex-direction: column; justify-content: space-between; }
.menu-toggle span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; transform-origin: center; }
.menu-toggle.active span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

.nav-list {
  position: fixed; top: 0; right: -100%; width: 80%; max-width: 340px; height: 100vh;
  background: var(--black-soft); padding: 100px 36px 40px; display: flex; flex-direction: column; gap: 24px;
  transition: right 0.4s ease; box-shadow: -10px 0 40px rgba(0,0,0,0.5);
}
.nav-list.open { right: 0; }
.nav-list a { font-size: 18px; font-weight: 500; opacity: 0.9; transition: opacity 0.2s, color 0.2s; }
.nav-list a:hover { opacity: 1; color: var(--gold); }
.nav-cta { margin-top: 10px; }

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
  .nav-list { position: static; width: auto; height: auto; background: none; padding: 0; flex-direction: row; align-items: center; box-shadow: none; }
  .nav-list a { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
  .nav-cta { margin-top: 0; margin-left: 20px; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-weight: 600; font-size: 14px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer; border: 2px solid transparent;
}
.btn-primary { background: var(--white); color: var(--black); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(244,240,236,0.25); }
.btn-gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(197,160,89,0.35); }
.btn-outline { border-color: rgba(255,255,255,0.25); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-text { padding: 10px 18px; color: var(--gray); background: transparent; }
.btn-text:hover { color: var(--white); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,10,10,0.3), rgba(10,10,10,0.85)); z-index: 1; }
.hero-content { position: relative; z-index: 2; padding-top: 100px; padding-bottom: 80px; }
.hero-label { text-transform: uppercase; letter-spacing: 3px; font-size: 12px; color: var(--gold); margin-bottom: 18px; }
.hero-title { font-family: var(--font-serif); font-size: clamp(36px, 8vw, 84px); line-height: 1.05; margin-bottom: 20px; }
.hero-title .line { display: block; }
.hero-subtitle { font-size: 18px; color: rgba(244,240,236,0.85); max-width: 460px; margin-bottom: 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--gray); }
.scroll-line { width: 1px; height: 40px; background: rgba(255,255,255,0.2); position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 50%; background: var(--gold); animation: scrollLine 1.8s infinite ease-in-out; }
@keyframes scrollLine { 0%,100% { transform: translateY(-100%); } 50% { transform: translateY(200%); } }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--black-soft); }
.grid-asymmetric { display: grid; gap: 40px; align-items: center; }
.about-image { position: relative; border-radius: var(--radius); overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.about-text .drop-cap::first-letter { font-family: var(--font-serif); font-size: 64px; line-height: 0.8; float: left; padding-right: 12px; padding-top: 6px; color: var(--gold); }
.about-text p { margin-bottom: 18px; color: rgba(244,240,236,0.85); font-size: 16px; }
.about-stats { display: flex; gap: 30px; margin-top: 28px; flex-wrap: wrap; }
.about-stats div { display: flex; flex-direction: column; }
.about-stats strong { font-family: var(--font-serif); font-size: 32px; color: var(--gold); }
.about-stats span { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); margin-top: 4px; }

@media (min-width: 768px) {
  .grid-asymmetric { grid-template-columns: 45% 1fr; gap: 60px; }
}

/* ============================================================
   SERVICES / TABS
   ============================================================ */
.services { background: var(--black); }
.tab-buttons { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 10px; margin-bottom: 30px; -webkit-overflow-scrolling: touch; }
.tab-btn {
  flex: 0 0 auto; padding: 12px 24px; border-radius: 50px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  border: 1px solid rgba(255,255,255,0.08); color: var(--gray); background: transparent; transition: var(--transition); white-space: nowrap;
}
.tab-btn.active, .tab-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.service-list { display: flex; flex-direction: column; gap: 16px; }
.service-item {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 24px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: var(--radius);
  transition: background 0.3s, border-color 0.3s;
}
.service-item:hover { background: rgba(255,255,255,0.04); border-color: rgba(197,160,89,0.2); }
.service-info h4 { font-family: var(--font-serif); font-size: 20px; margin-bottom: 6px; }
.service-info p { font-size: 14px; color: var(--gray); }
.service-meta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.badge { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); border: 1px solid rgba(197,160,89,0.25); padding: 4px 10px; border-radius: 20px; }
.price { font-family: var(--font-serif); font-size: 22px; color: var(--white); }

@media (max-width: 480px) {
  .service-item { flex-direction: column; align-items: flex-start; gap: 10px; padding: 18px; }
  .service-meta { width: 100%; justify-content: space-between; }
}

/* ============================================================
   BOOKING APP - CRITICAL SECTION
   ============================================================ */
.booking { background: var(--black-soft); }
.booking-app {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 20px;
  padding: 24px; max-width: 900px; margin: 0 auto;
}

/* Progress */
.booking-progress { display: flex; align-items: center; justify-content: center; margin-bottom: 30px; gap: 4px; }
.progress-step { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; flex: 1; }
.progress-step span {
  width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); font-size: 13px; font-weight: 700; color: var(--gray);
  transition: var(--transition);
}
.progress-step.active span { background: var(--gold); color: var(--black); border-color: var(--gold); }
.progress-step small { font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray); display: none; }
.progress-line { flex: 1; height: 2px; background: rgba(255,255,255,0.06); border-radius: 2px; max-width: 40px; }
@media (min-width: 600px) { .progress-step small { display: block; } .booking-progress { gap: 8px; } }

/* Steps */
.booking-step { display: none; }
.booking-step.active { display: block; animation: fadeIn 0.4s ease; }
.step-title { font-family: var(--font-serif); font-size: 22px; margin-bottom: 20px; text-align: center; }
.step-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; gap: 12px; }

/* Service cards */
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.service-card {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px;
  padding: 18px 12px; background: rgba(255,255,255,0.03); border: 2px solid transparent; border-radius: 14px;
  transition: var(--transition); cursor: pointer; min-height: 120px; justify-content: center;
}
.service-card .sc-icon { font-size: 28px; line-height: 1; }
.service-card .sc-name { font-weight: 600; font-size: 14px; }
.service-card .sc-meta { font-size: 12px; color: var(--gray); }
.service-card:hover { background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.service-card.selected { border-color: var(--gold); background: rgba(197,160,89,0.08); }
@media (min-width: 600px) { .service-grid { grid-template-columns: repeat(4, 1fr); } }

/* Pro cards */
.pro-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.pro-card {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px;
  padding: 16px; background: rgba(255,255,255,0.03); border: 2px solid transparent; border-radius: 14px;
  transition: var(--transition); cursor: pointer;
}
.pro-card img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.08); }
.pro-avatar { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.06); font-size: 24px; font-family: var(--font-serif); color: var(--gold); }
.pro-name { font-weight: 600; font-size: 15px; }
.pro-role { font-size: 12px; color: var(--gray); }
.pro-card:hover { background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.pro-card.selected { border-color: var(--gold); background: rgba(197,160,89,0.08); }
@media (min-width: 600px) { .pro-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .pro-grid { grid-template-columns: repeat(5, 1fr); } }

/* Calendar */
.datetime-picker { display: grid; gap: 24px; }
.calendar-wrap { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 14px; padding: 16px; }
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; font-weight: 600; }
.cal-nav { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; font-size: 20px; transition: background 0.2s; }
.cal-nav:hover { background: rgba(197,160,89,0.15); color: var(--gold); }
.cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; font-size: 11px; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: 10px;
  font-size: 14px; font-weight: 500; cursor: pointer; transition: var(--transition); background: rgba(255,255,255,0.02); border: 1px solid transparent;
}
.cal-day:hover:not(.disabled):not(.selected) { background: rgba(255,255,255,0.06); }
.cal-day.selected { background: var(--gold); color: var(--black); font-weight: 700; border-color: var(--gold); }
.cal-day.disabled { opacity: 0.25; cursor: not-allowed; }
.cal-day.today { border-color: rgba(197,160,89,0.35); color: var(--gold); }

/* Time slots */
.slots-wrap { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 14px; padding: 16px; }
.slots-label { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); margin-bottom: 12px; }
.slots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.slot-btn {
  padding: 12px 8px; border-radius: 10px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  font-size: 14px; font-weight: 600; transition: var(--transition); color: var(--white);
}
.slot-btn:hover { background: rgba(255,255,255,0.07); }
.slot-btn.selected { background: var(--gold); color: var(--black); border-color: var(--gold); }
.slots-placeholder { color: var(--gray); font-size: 14px; text-align: center; padding: 20px; grid-column: 1 / -1; }
@media (min-width: 600px) { .slots-grid { grid-template-columns: repeat(4, 1fr); } }

/* Form */
.form-grid { display: grid; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray); }
.form-field input, .form-field textarea {
  padding: 14px 16px; border-radius: 12px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  color: var(--white); font-size: 16px; transition: border-color 0.3s, background 0.3s; outline: none;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--gold); background: rgba(255,255,255,0.05); }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,0.2); }
.field-error { font-size: 12px; color: #ff6b6b; min-height: 16px; }
@media (min-width: 600px) { .form-grid { grid-template-columns: 1fr 1fr; } }

/* Summary */
.summary-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 14px; padding: 20px; display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; font-size: 15px; }
.summary-row span { color: var(--gray); }
.summary-row strong { text-align: right; font-weight: 500; }
.confirm-box p { color: var(--gray); font-size: 14px; margin-bottom: 16px; text-align: center; }

/* Success */
.success-box { text-align: center; padding: 30px 10px; }
.success-icon { font-size: 56px; margin-bottom: 16px; }
.success-box h3 { font-family: var(--font-serif); font-size: 26px; margin-bottom: 12px; }
.success-box p { color: rgba(244,240,236,0.85); margin-bottom: 8px; }
.success-box .small { font-size: 13px; color: var(--gray); }
.success-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 24px; }

/* ============================================================
   TEAM
   ============================================================ */
.team { background: var(--black); }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.team-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; overflow: hidden; text-align: center; padding-bottom: 22px; transition: transform var(--transition), border-color var(--transition); }
.team-card:hover { transform: translateY(-4px); border-color: rgba(197,160,89,0.2); }
.team-img { width: 100%; aspect-ratio: 1; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-card h4 { font-family: var(--font-serif); font-size: 20px; margin: 16px 0 4px; }
.team-role { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 10px; }
.team-card p { font-size: 14px; color: var(--gray); padding: 0 16px; margin-bottom: 12px; }
.team-insta { font-size: 13px; color: var(--gray); transition: color 0.2s; }
.team-insta:hover { color: var(--gold); }
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio { background: var(--black-soft); }
.portfolio-filter { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 30px; }
.filter-btn { padding: 10px 20px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.08); background: transparent; color: var(--gray); font-size: 13px; font-weight: 600; transition: var(--transition); }
.filter-btn.active, .filter-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.portfolio-item { position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-overlay { position: absolute; inset: 0; background: rgba(10,10,10,0.55); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.4s; }
.portfolio-overlay span { color: var(--white); font-family: var(--font-serif); font-size: 18px; text-align: center; padding: 10px; }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
@media (min-width: 768px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--black); }
.testi-grid { display: grid; gap: 20px; }
.testi-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 24px; }
.stars { color: var(--gold); font-size: 18px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-card p { font-size: 15px; color: rgba(244,240,236,0.9); margin-bottom: 16px; line-height: 1.6; }
.testi-author strong { display: block; font-size: 15px; }
.testi-author span { font-size: 12px; color: var(--gray); }
.testi-badge { text-align: center; margin-top: 30px; }
@media (min-width: 768px) { .testi-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

/* ============================================================
   PRODUCTS
   ============================================================ */
.products { background: var(--black-soft); }
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; text-align: center; }
.product-logo {
  padding: 28px 16px; border: 1px solid rgba(255,255,255,0.06); border-radius: 14px;
  font-family: var(--font-serif); font-size: 18px; color: var(--gray); transition: var(--transition);
}
.product-logo:hover { border-color: rgba(197,160,89,0.25); color: var(--white); transform: translateY(-3px); }
@media (min-width: 600px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .products-grid { grid-template-columns: repeat(6, 1fr); } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--black); }
.accordion { display: flex; flex-direction: column; gap: 12px; }
.accordion-item { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 14px; overflow: hidden; }
.accordion-header {
  width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 22px;
  font-size: 16px; font-weight: 600; text-align: left; transition: background 0.2s;
}
.accordion-header:hover { background: rgba(255,255,255,0.02); }
.accordion-icon { font-size: 22px; color: var(--gold); transition: transform 0.3s; }
.accordion-header[aria-expanded="true"] .accordion-icon { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; padding: 0 22px; }
.accordion-header[aria-expanded="true"] + .accordion-body { max-height: 300px; padding: 0 22px 20px; }
.accordion-body p { color: var(--gray); font-size: 15px; line-height: 1.6; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--black-soft); }
.contact-grid { display: grid; gap: 40px; }
.info-block { margin-bottom: 28px; }
.info-block h4 { font-family: var(--font-serif); font-size: 18px; margin-bottom: 10px; color: var(--gold); }
.info-block p, .info-block a { color: rgba(244,240,236,0.85); font-size: 15px; line-height: 1.7; }
.info-block a:hover { color: var(--gold); }
.hours { display: flex; flex-direction: column; gap: 8px; }
.hours li { display: flex; justify-content: space-between; font-size: 15px; border-bottom: 1px solid rgba(255,255,255,0.04); padding-bottom: 6px; }
.hours .closed { color: #ff6b6b; font-weight: 600; }
.social-links { display: flex; gap: 16px; margin-top: 10px; }
.social-links a { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 2px; transition: border-color 0.2s, color 0.2s; }
.social-links a:hover { color: var(--gold); border-color: var(--gold); }
.contact-map { border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.06); min-height: 320px; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 50px; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--black); padding-top: 70px; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 24px; margin-bottom: 50px; }
.footer-col h5 { font-family: var(--font-serif); font-size: 18px; margin-bottom: 14px; color: var(--gold); }
.footer-col p, .footer-col a, .footer-col li { font-size: 14px; color: var(--gray); line-height: 1.7; }
.footer-col a:hover { color: var(--white); }
.footer-big-logo {
  font-family: var(--font-serif); font-size: clamp(40px, 12vw, 160px); color: rgba(255,255,255,0.03);
  text-align: center; line-height: 1; white-space: nowrap; user-select: none; margin-bottom: 30px;
}
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: 13px; color: var(--gray); }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   UTILITIES
   ============================================================ */
.magnetic-btn { position: relative; }
