*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #C9A84C;
  --gold-light: #E8C878;
  --gold-dark: #9B7A2E;
  --cream: #F5F0E8;
  --off-white: #FAF8F4;
  --charcoal: #1A1A1A;
  --charcoal-mid: #2C2C2C;
  --charcoal-light: #3D3D3D;
  --gray-muted: #8A8A8A;
  --gray-border: #333333;
  --text-light: #D0CEC9;
  --red-accent: #C0392B;
}

html { scroll-behavior: smooth; }

body {
  background: var(--charcoal); color: var(--cream);
  font-family: 'Inter', sans-serif; font-size: 16px;
  line-height: 1.6; overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(26,26,26,0.97);
  border-bottom: 1px solid var(--gray-border);
  backdrop-filter: blur(10px);
}
.nav-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 0.12em; color: var(--gold); text-decoration: none; flex-shrink: 0; }
.nav-logo span { color: var(--cream); }
nav ul { display: flex; gap: 2.5rem; list-style: none; }
nav ul a { text-decoration: none; color: var(--text-light); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; transition: color 0.2s; }
nav ul a:hover { color: var(--gold); }
.btn-nav { background: var(--gold); color: var(--charcoal); border: none; padding: 0.6rem 1.6rem; font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; text-decoration: none; white-space: nowrap; transition: background 0.2s, transform 0.15s; }
.btn-nav:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-right { display: flex; align-items: center; gap: 1rem; }

/* Language switcher */
.lang-switcher { display: flex; gap: 0.35rem; align-items: center; }
.lang-btn { width: 34px; height: 24px; padding: 0; border: 2px solid transparent; background: none; cursor: pointer; border-radius: 3px; overflow: hidden; opacity: 0.45; transition: opacity 0.2s, border-color 0.2s; display: flex; align-items: center; justify-content: center; }
.lang-btn svg { width: 100%; height: 100%; display: block; }
.lang-btn:hover { opacity: 0.85; }
.lang-btn.active { opacity: 1; border-color: var(--gold); }
.drawer-lang { flex-direction: row; gap: 1rem; margin-top: 0.5rem; }
.drawer-lang .lang-btn { width: 52px; height: 36px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 36px; height: 36px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 1100; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--cream); transition: transform 0.3s, opacity 0.3s; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-drawer { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(26,26,26,0.98); flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem; }
.nav-drawer.open { display: flex; }
.nav-drawer a { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; letter-spacing: 0.12em; color: var(--cream); text-decoration: none; transition: color 0.2s; }
.nav-drawer a:hover { color: var(--gold); }
.nav-drawer .drawer-book { background: var(--gold); color: var(--charcoal); padding: 0.9rem 3rem; font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; }

/* ── HERO ── */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 8rem 4rem 5rem; position: relative; overflow: hidden; }
.hero-bg-img { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?w=1920&q=85&auto=format&fit=crop'); background-size: cover; background-position: center; filter: brightness(1); }
.hero-bg-pattern { position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(201,168,76,0.03) 40px, rgba(201,168,76,0.03) 41px); pointer-events: none; }
.hero-tag { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.8rem; }
.hero-tag::before { content: ''; display: inline-block; width: 40px; height: 1px; background: var(--gold); }
.hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(4rem, 10vw, 9rem); line-height: 0.92; letter-spacing: 0.04em; color: var(--cream); margin-bottom: 1.5rem; }
.hero h1 em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--gold); display: block; }
.hero-sub { max-width: 480px; font-size: 1rem; color: var(--text-light); line-height: 1.75; margin-bottom: 2.5rem; }
.hero-ctas { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.btn-primary { background: var(--gold); color: var(--charcoal); border: none; padding: 1rem 2.4rem; font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.15s; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { border: 1px solid rgba(245,240,232,0.35); color: var(--text-light); background: transparent; padding: 1rem 2rem; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; text-decoration: none; display: inline-block; transition: border-color 0.2s, color 0.2s; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-stats { display: flex; gap: 3rem; margin-top: 4rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; color: var(--gold); letter-spacing: 0.05em; }
.stat-label { font-size: 0.72rem; color: var(--gray-muted); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 0.1rem; }

/* ── SECTIONS ── */
section { padding: 4rem 1.5rem; }
.section-wrapper { max-width: 860px; width: 100%; margin: 0 auto; position: relative; z-index: 1; background: rgba(26,26,26,0.84); border: 1px solid rgba(201,168,76,0.18); border-top: 3px solid var(--gold); padding: 2.2rem 2.4rem 2rem; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 20px 60px rgba(0,0,0,0.55); }
.section-wrapper--wide { max-width: 1200px; }
.section-tag { font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.8rem; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: 0.06em; line-height: 1; margin-bottom: 1rem; }
.section-sub { color: var(--gray-muted); font-size: 0.95rem; max-width: 520px; line-height: 1.7; }
.section-header { margin-bottom: 3.5rem; }

/* ── GALLERY ── */
#gallery { background: var(--charcoal); padding-bottom: 3rem; position: relative; }
#gallery::before { content: ''; position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 70%); pointer-events: none; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.gallery-item { overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease, filter 0.4s; filter: brightness(0.85); }
.gallery-item:hover img { transform: scale(1.05); filter: brightness(1); }
.gallery-item:nth-child(1) { grid-column: span 2; height: 380px; }
.gallery-item:nth-child(2) { height: 380px; }
.gallery-item:nth-child(3) { height: 260px; }
.gallery-item:nth-child(4) { height: 260px; }
.gallery-item:nth-child(5) { height: 260px; }
.lightbox { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.92); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 1.5rem; right: 2rem; font-size: 2.5rem; color: var(--cream); cursor: pointer; background: none; border: none; line-height: 1; }

/* ── PRICING ── */
#pricing { position: relative; overflow: hidden; background: #ffffff; }
#pricing::before { display: none; }
#pricing::after { display: none; }
.pricing-tabs { display: flex; gap: 0; margin-bottom: 2.5rem; border-bottom: 1px solid rgba(0,0,0,0.12); flex-wrap: wrap; }
.tab-btn { background: none; border: none; font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: #ffffff; padding: 0.75rem 1.8rem; cursor: pointer; position: relative; transition: color 0.2s; }
.tab-btn::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform 0.2s; }
.tab-btn.active { color: var(--gold); }
.tab-btn.active::after { transform: scaleX(1); }
.tab-btn:hover { color: #111; }
.pricing-panel { display: none; }
.pricing-panel.active { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 8px; }
.price-item { background: #f7f7f7; border: 1px solid #e0e0e0; border-radius: 4px; padding: 1.2rem 1.5rem; display: flex; align-items: center; justify-content: space-between; transition: background 0.2s, border-color 0.2s, transform 0.15s; }
.price-item:hover { }
.price-item-left { flex: 1; }
.price-name { font-weight: 500; font-size: 0.95rem; color: #1a1a1a; margin-bottom: 0.25rem; }
.price-duration { font-size: 0.75rem; color: #888; letter-spacing: 0.05em; }
.price-amount { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: var(--gold); letter-spacing: 0.05em; }

/* ── BARBERS ── */
#barbers { position: relative; overflow: hidden; background: var(--charcoal); }
#barbers::before { content: ''; position: absolute; inset: 0; z-index: 0; background-image: url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?w=1600&q=60&auto=format&fit=crop'); background-size: cover; background-position: center top; filter: brightness(0.1) saturate(0.4); }
#barbers::after { content: ''; position: absolute; inset: 0; z-index: 0; background: linear-gradient(135deg, rgba(7,137,48,0.06) 0%, rgba(26,26,26,0.5) 50%, rgba(65,137,221,0.06) 100%); }
.barbers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }
.barber-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); padding: 1.8rem; border-radius: 4px; backdrop-filter: blur(8px); transition: border-color 0.25s, transform 0.25s, background 0.25s; }
.barber-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,0.4); }
.ea-accent-green  { border-top: 3px solid #078930; }
.ea-accent-yellow { border-top: 3px solid #FCDD09; }
.ea-accent-red    { border-top: 3px solid #DA121A; }
.ea-accent-blue   { border-top: 3px solid #4189DD; }
.barber-photo-wrap { width: 100%; height: 200px; margin-bottom: 1.2rem; position: relative; overflow: hidden; }
.barber-photo { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; transition: transform 0.4s ease; }
.barber-card:hover .barber-photo { transform: scale(1.04); }
.barber-name { font-weight: 600; font-size: 1.05rem; margin-bottom: 0.3rem; }
.barber-role { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.barber-specialties { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.specialty-tag { font-size: 0.68rem; padding: 0.2rem 0.65rem; border: 1px solid var(--gray-border); color: var(--gray-muted); letter-spacing: 0.05em; }
.barber-exp { font-size: 0.78rem; color: var(--gray-muted); }
.barber-exp strong { color: var(--cream); }

/* ── REVIEWS ── */
#reviews { position: relative; overflow: hidden; background: var(--charcoal); }
#reviews::before { content: ''; position: absolute; inset: 0; z-index: 0; background-image: url('https://images.unsplash.com/photo-1622286342621-4bd786c2447c?w=1600&q=60&auto=format&fit=crop'); background-size: cover; background-position: center; filter: brightness(0.1) saturate(0.3); }
#reviews::after { content: ''; position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.07) 0%, transparent 65%); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.review-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 4px; padding: 1.8rem; backdrop-filter: blur(8px); transition: background 0.25s, border-color 0.25s, transform 0.2s; }
.review-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(201,168,76,0.3); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.35); }
.review-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.review-text { font-size: 0.9rem; line-height: 1.75; color: var(--text-light); margin-bottom: 1.2rem; font-style: italic; }
.reviewer-name { font-weight: 600; font-size: 0.85rem; }
.reviewer-date { font-size: 0.72rem; color: var(--gray-muted); margin-top: 0.15rem; }

/* ── LOCATION ── */
#location { position: relative; overflow: hidden; background: #ffffff; }
#location::before { display: none; }
#location::after { content: ''; position: absolute; inset: 0; z-index: 0; background: linear-gradient(135deg, rgba(26,26,26,0.7) 0%, rgba(26,26,26,0.4) 100%); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.location-info { display: flex; flex-direction: column; gap: 2rem; }
.info-block { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 4px; padding: 1.2rem 1.5rem; backdrop-filter: blur(8px); }
.info-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.5rem; }
.info-value { font-size: 0.92rem; color: var(--text-light); line-height: 1.8; }
.info-value strong { color: var(--cream); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 0.3rem 0; font-size: 0.88rem; color: var(--text-light); }
.hours-table td:first-child { color: var(--cream); font-weight: 500; width: 120px; }
.map-container { width: 100%; height: 360px; border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; position: relative; box-shadow: 0 12px 36px rgba(0,0,0,0.5); }
.map-container iframe { width: 100%; height: 100%; border: none; }
.map-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1rem; color: var(--gold); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; font-weight: 600; transition: color 0.2s; }
.map-link:hover { color: var(--gold-light); }
.payment-note { background: rgba(192,57,43,0.08); border-left: 3px solid var(--red-accent); padding: 0.65rem 1rem; font-size: 0.8rem; color: var(--text-light); line-height: 1.5; }

/* ── FOOTER ── */
footer { background: #111; border-top: 1px solid var(--gray-border); padding: 4rem 4rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--gold); letter-spacing: 0.12em; margin-bottom: 1rem; display: block; }
.footer-logo span { color: var(--cream); }
.footer-tagline { font-size: 0.85rem; color: var(--gray-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.social-link { width: 36px; height: 36px; border: 1px solid var(--gray-border); display: flex; align-items: center; justify-content: center; color: var(--gray-muted); text-decoration: none; font-size: 0.85rem; transition: border-color 0.2s, color 0.2s; }
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-heading { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { text-decoration: none; color: var(--gray-muted); font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }
.footer-info { font-size: 0.85rem; color: var(--gray-muted); line-height: 2; }
.footer-info strong { color: var(--cream); display: block; margin-bottom: 0.2rem; margin-top: 0.8rem; }
.footer-info strong:first-child { margin-top: 0; }
.footer-bottom { border-top: 1px solid var(--gray-border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; color: var(--gray-muted); flex-wrap: wrap; gap: 0.5rem; }

/* ── WHATSAPP ── */
.wa-float { position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 500; width: 52px; height: 52px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,0.4); text-decoration: none; color: #fff; font-size: 1.5rem; transition: transform 0.2s, box-shadow 0.2s; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(0,0,0,0.5); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 1rem 2rem; }
  section { padding: 3rem 1.2rem; }
  .section-wrapper { padding: 1.8rem 1.6rem 1.6rem; }
  .hero { padding: 7rem 2.5rem 4rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .location-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .map-container { height: 280px; }
  .pricing-panel.active { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
}
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  nav ul, .nav-right { display: none; }
  .hamburger { display: flex; }
  section { padding: 2.5rem 0.8rem; }
  .section-wrapper { padding: 1.4rem 1.2rem 1.2rem; }
  .hero { padding: 6rem 1.5rem 3rem; }
  .hero h1 { font-size: clamp(3rem, 13vw, 5rem); }
  .hero-sub { font-size: 0.92rem; }
  .hero-stats { gap: 1.5rem; margin-top: 2.5rem; padding-top: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; height: 240px; }
  .gallery-item:nth-child(2), .gallery-item:nth-child(3), .gallery-item:nth-child(4), .gallery-item:nth-child(5) { height: 200px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pricing-panel.active { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 3rem; }
  .barbers-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 200px !important; }
  .gallery-item:nth-child(1) { grid-column: span 1; height: 220px !important; }
}
