/* ============================================================
   FADE MASTERS BARBER STUDIO — style.css
   Cloudflare Pages · Vanilla HTML/CSS/JS
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES + RESET
   ============================================================ */
:root {
  /* Colors */
  --color-bg:               #0a0a0a;
  --color-surface:          #111111;
  --color-nav:              #0d0d0d;
  --color-accent:           #C41E3A;
  --color-gold:             #D4AF37;
  --color-text:             #FFFFFF;
  --color-text-muted:       #999999;
  --color-border:           #1a1a1a;
  --color-skeleton-base:    #1a1a1a;
  --color-skeleton-shimmer: #2a2a2a;

  /* Typography */
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;

  /* Shape */
  --radius:    8px;
  --radius-lg: 16px;

  /* Nav */
  --nav-height: 72px;

  /* Motion */
  --transition:    200ms ease;
  --transition-md: 350ms cubic-bezier(0.32, 0.72, 0, 1);
}

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

/* Images */
img {
  max-width: 100%;
  display: block;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}

/* Lists */
ul {
  list-style: none;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Body */
body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================================
   2. SKELETON SHIMMER
   ============================================================ */
.skeleton {
  background: linear-gradient(
    90deg,
    #1a1a1a 25%,
    #2a2a2a 50%,
    #1a1a1a 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
}

@keyframes shimmer {
  0%   { background-position:  200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================================
   3. TYPOGRAPHY HELPERS
   ============================================================ */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  line-height: 1;
}

.section-sub {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
}

/* ============================================================
   4. LAYOUT CONTAINER
   ============================================================ */
.container {
  width: 90%;
  max-width: 1100px;
  margin-inline: auto;
}

/* All sections default padding */
section {
  padding-block: var(--space-lg);
  padding-left: clamp(24px, 5vw, 80px);
  padding-right: clamp(24px, 5vw, 80px);
}

/* ============================================================
   5. NAV
   ============================================================ */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-md);
  height: var(--nav-height);
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

#main-nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  line-height: 1;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
  align-self: center;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  max-width: 240px;
  display: block;
  object-fit: contain;
  align-self: flex-start;
  margin-bottom: 0.5rem;
}

.nav-brand-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-accent);
  letter-spacing: 0.08em;
  display: block;
}

.nav-brand-sub {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--color-accent);
}

/* Nav book button */
.btn-book-nav {
  background: var(--color-accent);
  color: white !important;
  border-radius: var(--radius);
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: filter var(--transition);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-book-nav:hover {
  filter: brightness(1.15);
  color: white !important;
}

/* Right side nav grouping */
.nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Language pill */
.lang-pill {
  display: flex;
  border: 1px solid #2a2a2a;
  border-radius: 999px;
  overflow: hidden;
  background: #111;
}

.lang-btn {
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--color-text-muted);
  transition: background var(--transition), color var(--transition);
  min-height: 44px;
  font-family: var(--font-body);
}

.lang-btn.active {
  background: var(--color-accent);
  color: white;
  border-radius: 999px;
}

/* Hamburger — hidden by default (shown in mobile MQ below) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* ============================================================
   6. MOBILE OVERLAY
   ============================================================ */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.overlay-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-links {
  text-align: center;
}

.overlay-links li {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-overlay.open .overlay-links li:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.1s;
}

.mobile-overlay.open .overlay-links li:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.15s;
}

.mobile-overlay.open .overlay-links li:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.2s;
}

.mobile-overlay.open .overlay-links li:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.25s;
}

.mobile-overlay.open .overlay-links li:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: 0.3s;
}

.overlay-links a {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  letter-spacing: 0.08em;
  color: white;
  transition: color var(--transition);
}

.overlay-links a:hover {
  color: var(--color-accent);
}

.btn-book-overlay {
  background: var(--color-accent);
  color: white !important;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
}

.overlay-lang {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.lang-btn-overlay {
  background: none;
  border: 1px solid #333;
  color: #999;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 44px;
  min-width: 44px;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}

.lang-btn-overlay.active {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* ============================================================
   7. HERO
   ============================================================ */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--color-bg);
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: kenburns 20s ease-out infinite alternate;
}

@keyframes kenburns {
  from { transform: scale(1.0); }
  to   { transform: scale(1.08); }
}

/* Cinematic vignette overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(0,0,0,0.75) 0%,
      rgba(0,0,0,0.45) 50%,
      rgba(0,0,0,0.25) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.4) 0%,
      rgba(0,0,0,0.1) 40%,
      rgba(0,0,0,0.6) 100%
    );
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 800px;
  padding: 0 clamp(32px, 6vw, 120px);
}

/* Barber pole */
.barber-pole {
  z-index: 1;
}
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 340px;
  border-radius: 999px;
  overflow: hidden;
  border: 3px solid #333;
  box-shadow: 0 0 32px rgba(196, 30, 58, 0.25);
}

.pole-stripes {
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    #C41E3A 0px,  #C41E3A 14px,
    #ffffff 14px, #ffffff 28px,
    #1a1a1a 28px, #1a1a1a 42px
  );
  background-size: 60px 60px;
  animation: pole-scroll 1.5s linear infinite;
}

@keyframes pole-scroll {
  0%   { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 14vw, 9rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 40px rgba(0,0,0,0.9), 0 0 80px rgba(0,0,0,0.5);
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  /* anime.js will reveal via animation */
}

.hero-title .accent-word {
  color: var(--color-accent);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--color-text-muted);
  max-width: 480px;
  margin-bottom: var(--space-md);
}

.hero-ctas {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ============================================================
   8. BUTTONS (GLOBAL)
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: filter 0.2s ease, transform 0.15s ease;
  min-height: 48px;
  cursor: pointer;
}

.btn-primary:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: scale(0.98) translateY(0);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: border-color 0.2s ease, background 0.2s ease;
  min-height: 48px;
}

.btn-outline:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.05);
}

/* ============================================================
   9. ABOUT SECTION
   ============================================================ */
#about {
  background: var(--color-surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-text p {
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 65ch;
  font-size: 1.05rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.stat-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.walk-in-stat {
  font-size: 1.6rem;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

/* Owner cards */
.owners-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.owner-card {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border-top: 3px solid var(--color-gold);
}

.owner-monogram {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-gold);
  color: #000;
  font-family: var(--font-heading);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Wrapper div inside owner-card for text content */
.owner-info {
  display: flex;
  flex-direction: column;
}

.owner-badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.owner-name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.owner-bio {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================================
   10. SERVICES SECTION
   ============================================================ */
#services {
  background: var(--color-bg);
}

.services-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--color-surface);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.625rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 44px;
  font-family: var(--font-body);
}

.tab-btn:hover {
  color: white;
  border-color: #444;
}

.tab-btn.active {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-md);
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: border-color 0.2s ease, transform 0.2s ease;
  opacity: 0;
}

.service-card.visible {
  opacity: 1;
}

.service-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
}

.service-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.service-name-es {
  font-size: 0.75rem;
  color: #999;
  margin-top: 2px;
  font-style: italic;
  margin-bottom: var(--space-sm);
}

.service-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.service-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
}

.service-duration {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-left: 0.5rem;
}

/* Premium (gold) service card */
.service-card.premium {
  border-color: var(--color-gold);
  background: linear-gradient(135deg, #111 0%, #1a1400 100%);
}

.service-card.premium .service-name {
  color: var(--color-gold);
}

.service-card.premium .service-price {
  color: var(--color-gold);
}

.premium-badge {
  display: inline-block;
  background: var(--color-gold);
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

/* Skeleton service card */
.skeleton-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}

.skeleton-line {
  height: 1rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.skeleton-line.wide   { width: 80%; }
.skeleton-line.medium { width: 60%; }
.skeleton-line.short  { width: 40%; }

.skeleton-price {
  height: 1.5rem;
  width: 30%;
  border-radius: 4px;
  margin-top: var(--space-sm);
}

/* ============================================================
   11. TEAM SECTION
   ============================================================ */
#team {
  background: var(--color-surface);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.team-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
  opacity: 0;
}

.team-card.visible {
  opacity: 1;
}

.team-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
}

.team-monogram {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.team-bio {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: var(--space-sm);
}

.team-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius);
  padding: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s ease, color 0.2s ease;
  min-height: 44px;
  cursor: pointer;
  font-family: var(--font-body);
}

.team-book-btn:hover {
  background: var(--color-accent);
  color: white;
}

/* Skeleton team card */
.skeleton-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.skeleton-name-line {
  height: 1.4rem;
  width: 70%;
  margin: 0 auto 0.5rem;
  border-radius: 4px;
}

.skeleton-role-line {
  height: 0.9rem;
  width: 55%;
  margin: 0 auto 0.75rem;
  border-radius: 4px;
}

.skeleton-bio-line {
  height: 0.8rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.skeleton-btn {
  height: 44px;
  border-radius: var(--radius);
  margin-top: var(--space-sm);
}

/* ============================================================
   12. LOCATION SECTION
   ============================================================ */
#location {
  background: var(--color-bg);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.map-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.map-skeleton {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--radius-lg);
}

.map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 2;
  transition: opacity 0.4s ease;
}

.hidden-until-load {
  opacity: 0;
}

.map-iframe.loaded {
  opacity: 1;
}

/* Hours */
.hours-info {
  /* container for hours + contact */
}

.hours-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--color-border);
}

.hours-table td {
  padding: 0.75rem 0;
  font-size: 0.9rem;
}

.hours-table td:last-child {
  text-align: right;
  color: var(--color-text-muted);
}

.hours-table tr.today td {
  color: var(--color-accent);
  font-weight: 600;
}

/* Contact details */
.contact-details {
  margin-top: var(--space-md);
}

.contact-details p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.contact-details strong {
  color: var(--color-text);
}

.contact-details a {
  color: var(--color-accent);
  transition: opacity 0.2s ease;
}

.contact-details a:hover {
  opacity: 0.8;
}

/* ============================================================
   13. BOOKING CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--color-accent);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(0, 0, 0, 0.04) 0px,
    rgba(0, 0, 0, 0.04) 1px,
    transparent 1px,
    transparent 8px
  );
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 0.04em;
  color: white;
  margin-bottom: var(--space-sm);
}

.cta-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-md);
}

.btn-outline-sm {
  display: inline-block;
  margin-top: 1rem;
  padding: 10px 20px;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.btn-outline-sm:hover {
  background: var(--color-accent);
  color: #fff;
}

.btn-cta-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: filter 0.2s ease, transform 0.15s ease;
  min-height: 52px;
}

.btn-cta-large:hover {
  filter: brightness(0.95);
  transform: translateY(-2px);
}

/* ============================================================
   14. FOOTER
   ============================================================ */
footer {
  background: #080808;
  border-top: 1px solid var(--color-border);
  padding: var(--space-lg) var(--space-md) var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  max-width: 1100px;
  margin-inline: auto;
  margin-bottom: var(--space-md);
}

/* Brand column wrapper */
.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  display: block;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
  display: block;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: white;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-social a {
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--color-accent);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  font-size: 0.8rem;
  color: #555;
  max-width: 1100px;
  margin-inline: auto;
}

.footer-credit {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #C41E3A;
}

/* ============================================================
   15. SCROLL REVEAL (GSAP ScrollTrigger hooks)
   ============================================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.32, 0.72, 0, 1);
}

.reveal-up.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   16. RESPONSIVE — ALL BREAKPOINTS
   ============================================================ */

/* ---- Tablet (max-width: 1024px) ---- */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .owners-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .location-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Mobile (max-width: 768px) ---- */
@media (max-width: 768px) {
  /* Global overflow lock */
  body {
    overflow-x: hidden;
  }

  section {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Nav */
  .nav-links {
    display: none;
  }

  #main-nav {
    padding: 0 12px;
  }

  .hamburger {
    display: flex;
  }

  /* Shrink lang pill so it fits on nav bar */
  .lang-pill {
    gap: 2px;
  }

  .lang-btn {
    font-size: 0.65rem;
    padding: 4px 8px;
    min-height: 36px;
  }

  /* Hide flag emoji on mobile — text only */
  .flag-emoji {
    display: none;
  }

  /* Hero overflow and fallback background */
  #hero {
    overflow: hidden;
    background: linear-gradient(
      135deg,
      #0a0a0a 0%,
      #1a0a0a 50%,
      #0a0a0a 100%
    );
  }

  .hero-overlay {
    background: rgba(0, 0, 0, 0.3);
  }

  /* Hero content */
  .hero-content {
    width: 100%;
    padding: 0 20px;
    padding-top: 80px;
  }

  .hero-eyebrow {
    font-size: 0.7rem;
  }

  .hero-title {
    font-size: clamp(2.8rem, 13vw, 5rem);
    line-height: 1.0;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .hero-sub {
    font-size: 0.9rem;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  /* Hide barber pole */
  .barber-pole {
    display: none;
  }

  /* Other layout */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-tabs {
    gap: 0.35rem;
  }

  .tab-btn {
    padding: 0.5rem 0.875rem;
    font-size: 0.8rem;
  }
}

/* ---- Small mobile (max-width: 480px) ---- */
@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline {
    width: 100%;
    text-align: center;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .owners-row {
    grid-template-columns: 1fr;
  }

  .owner-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ============================================================
   17. DESKTOP — hide hamburger & overlay
   ============================================================ */
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }

  .mobile-overlay {
    display: none !important;
  }
}
