/* ============================================================
   Genuine Throne Barbershop — Austin, TX
   styles.css
   ============================================================ */

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  --green:       #9ACD32;
  --green-bright:#AADD00;
  --gold:        #C8952A;
  --gold-light:  #E8B84B;
  --black:       #0a0a0a;
  --black-mid:   #111111;
  --black-soft:  #1a1a1a;
  --white:       #f5f5f0;
  --gray:        #888;
  --transition-fast: 0.2s ease;
  --transition-med:  0.3s ease;
  --transition-slow: 0.7s ease;
  --max-width: 1200px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Jost', 'Barlow', sans-serif;
  overflow-x: hidden;
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ── UTILITY ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  /* Must sit ABOVE .mobile-menu (250) — the hamburger doubles as the menu's
     close button, and there is no Escape key on a phone. */
  position: fixed; top: 0; left: 0; right: 0; z-index: 260;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 48px;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(154,205,50,0.15);
  transition: padding var(--transition-med);
}
nav.scrolled { padding: 10px 48px; }
.nav-logo {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
}
.nav-logo-img { width: 44px; height: 44px; object-fit: contain; }
.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: 3px; color: var(--green); line-height: 1.1;
}
.nav-brand span {
  display: block; font-size: 10px; letter-spacing: 5px;
  color: var(--gold); font-family: 'Jost', 'Barlow Condensed', sans-serif;
  font-weight: 600;
}
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none;
  font-family: 'Jost', 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.7); transition: color var(--transition-fast);
}
.nav-links a:hover { color: var(--green); }
.nav-book {
  background: var(--green) !important; color: var(--black) !important;
  padding: 9px 20px; font-weight: 700 !important;
  transition: background var(--transition-fast) !important;
}
.nav-book:hover { background: var(--green-bright) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); transition: all var(--transition-med);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.98); z-index: 250;
  flex-direction: column; align-items: center; justify-content: safe center; gap: 32px;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: 88px 24px 40px;
}
/* .mobile-menu.open is declared inside the ≤900px query only — above that
   breakpoint the hamburger is display:none, so an open menu would be
   un-closable. See the tablet block below. */
.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif; font-size: 36px; letter-spacing: 4px;
  color: var(--white); text-decoration: none; transition: color var(--transition-fast);
}
.mobile-menu a:hover { color: var(--green); }
.mobile-book-btn {
  background: var(--green); color: var(--black) !important;
  padding: 14px 48px; font-size: 28px !important;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  background: var(--green); color: var(--black);
  padding: 15px 38px;
  font-family: 'Bebas Neue', sans-serif; font-size: 19px; letter-spacing: 3px;
  text-decoration: none; display: inline-block; white-space: nowrap;
  transition: background var(--transition-fast), transform 0.15s;
}
.btn-primary:hover { background: var(--green-bright); transform: translateY(-2px); }
.btn-outline {
  border: 1px solid rgba(154,205,50,0.4); color: var(--green);
  padding: 14px 32px;
  font-family: 'Bebas Neue', sans-serif; font-size: 19px; letter-spacing: 3px;
  text-decoration: none; display: inline-block; white-space: nowrap;
  transition: all var(--transition-fast);
}
.btn-outline:hover { border-color: var(--green); background: rgba(154,205,50,0.08); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden; text-align: center; padding: 80px 24px 60px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../assets/images/shop/hero-bg.jpg');
  background-size: cover; background-position: center;
  filter: brightness(0.25) saturate(1.4);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.7) 100%);
}
.hero-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(to top, var(--black), transparent);
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  max-width: 700px; width: 100%;
}
.hero-logo {
  width: 110px; height: 110px;
  animation: floatLogo 4s ease-in-out infinite;
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.hero-eyebrow {
  font-family: 'Jost', 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 11px; letter-spacing: 7px;
  text-transform: uppercase; color: var(--gold);
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 12vw, 120px); line-height: 0.9; letter-spacing: 4px;
}
.hero-title span { color: var(--green); }
.hero-sub {
  font-family: 'Jost', 'Barlow Condensed', sans-serif;
  font-size: 16px; letter-spacing: 2px;
  color: rgba(255,255,255,0.55); max-width: 460px; line-height: 1.5;
}
.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 4px;
}
.hero-stats {
  display: flex; gap: 36px; flex-wrap: wrap; justify-content: center; margin-top: 16px;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 38px;
  color: var(--green); line-height: 1;
}
.stat-label {
  font-family: 'Jost', 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gray); margin-top: 3px;
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker-wrap { background: var(--green); overflow: hidden; padding: 11px 0; }
.ticker {
  display: flex; animation: tickerScroll 22s linear infinite; white-space: nowrap;
}
.ticker-item {
  font-family: 'Bebas Neue', sans-serif; font-size: 15px;
  letter-spacing: 4px; color: var(--black); padding: 0 36px;
}
.ticker-item::after { content: '✦'; margin-left: 36px; color: var(--gold); }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
section { padding: 80px 48px; }
.section-label {
  font-family: 'Jost', 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 8px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 68px); line-height: 1;
  letter-spacing: 2px; margin-bottom: 18px;
}
.section-title .accent { color: var(--green); }
.section-body {
  font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 520px;
}
.divider { height: 1px; background: rgba(255,255,255,0.07); margin: 0; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.about-images { position: relative; height: 500px; }
.about-img-main {
  position: absolute; top: 0; left: 0; width: 78%; height: 86%;
  object-fit: cover; border: 2px solid rgba(154,205,50,0.2);
  /* team-full.jpg is a tall 3:4 group shot with the faces at ~25% height.
     Default centre-cropping cuts the heads off once the container goes wide
     (tablet/mobile, where the column is full-width). Bias the crop upward. */
  object-position: center 22%;
}
.about-img-accent {
  position: absolute; bottom: 0; right: 0; width: 52%; height: 50%;
  object-fit: cover; border: 2px solid var(--gold);
}
.about-badge {
  /* Sits over the empty epoxy floor in the lower-left of the group shot.
     Keep it clear of the 38%/60% area — that's where the faces are. */
  position: absolute; top: 68%; left: 22%; transform: translate(-50%, -50%);
  background: var(--green); color: var(--black);
  width: 100px; height: 100px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 12px;
  letter-spacing: 2px; text-align: center; line-height: 1.2; z-index: 3;
  box-shadow: 0 0 28px rgba(154,205,50,0.35);
}
.about-badge strong { font-size: 26px; line-height: 1; }
.about-pillars {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px;
}
.about-bilingual {
  margin-top: 14px;
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,0.4);
}
.pillar {
  border: 1px solid rgba(154,205,50,0.12); padding: 18px;
  background: rgba(154,205,50,0.03);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.pillar:hover { border-color: rgba(154,205,50,0.28); background: rgba(154,205,50,0.06); }
.pillar-icon { font-size: 20px; margin-bottom: 7px; }
.pillar-title {
  font-family: 'Jost', 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--green); margin-bottom: 5px;
}
.pillar-text { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.5; }

/* ============================================================
   BARBERS
   ============================================================ */
.barbers-section { background: var(--black-soft); padding: 80px 48px; }
.barbers-inner { max-width: var(--max-width); margin: 0 auto; }
.barbers-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; flex-wrap: wrap; gap: 20px;
}
.barbers-grid {
  display: grid; grid-template-columns: repeat(5, minmax(160px, 1fr)); gap: 2px;
}

.barber-card {
  position: relative; background: var(--black-mid); overflow: hidden; cursor: pointer;
}
.barber-photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top;
  display: block; filter: grayscale(10%) saturate(1.1);
  transition: transform 0.4s ease;
}
.barber-photo-placeholder {
  width: 100%; aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s ease; font-size: 60px; opacity: 0.15;
}
.barber-card:hover .barber-photo,
.barber-card:hover .barber-photo-placeholder { transform: scale(1.04); }
/* Monogram placeholder for barbers without a photo yet. Swap the element for
   an <img class="barber-photo"> when the real portrait arrives. */
.barber-photo-placeholder--monogram {
  background: linear-gradient(160deg, #0a1a00 0%, #1e3000 42%, #080f00 100%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 110px; letter-spacing: 6px; line-height: 1;
  color: var(--green); opacity: 0.5;
}

.barber-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 22px 18px;
}
.barber-tag {
  font-family: 'Jost', 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 3px;
}
.barber-name {
  font-family: 'Bebas Neue', sans-serif; font-size: 26px;
  letter-spacing: 2px; color: var(--white); line-height: 1;
}
.barber-specialty {
  font-family: 'Jost', 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--green); margin-top: 3px;
}
.barber-reviews { display: flex; align-items: center; gap: 7px; margin-top: 8px; }
.barber-stars   { color: var(--gold); font-size: 11px; }
.barber-count   {
  font-family: 'Jost', 'Barlow Condensed', sans-serif;
  font-size: 11px; color: rgba(255,255,255,0.35);
}
.barber-book-btn {
  margin-top: 12px; background: var(--green); color: var(--black); border: none;
  padding: 9px 16px; font-family: 'Bebas Neue', sans-serif; font-size: 14px;
  letter-spacing: 2px; cursor: pointer; width: 100%;
  opacity: 0; transform: translateY(6px); transition: opacity var(--transition-med), transform var(--transition-med);
}
.barber-card:hover .barber-book-btn,
.barber-card:focus-within .barber-book-btn { opacity: 1; transform: translateY(0); }
/* Touch devices never fire :hover — the button must not be invisible there. */
@media (hover: none), (pointer: coarse) {
  .barber-book-btn { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .barber-book-btn { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-inner { max-width: var(--max-width); margin: 0 auto; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px;
}
.service-card {
  background: var(--black-soft); padding: 32px 28px;
  border: 1px solid rgba(154,205,50,0.07);
  position: relative; overflow: hidden;
  transition: border-color var(--transition-med), background var(--transition-med);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--green); transform: scaleX(0); transition: transform var(--transition-med);
  transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: rgba(154,205,50,0.22); background: rgba(154,205,50,0.03);
}
.service-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 56px;
  color: rgba(154,205,50,0.07); line-height: 1; position: absolute; top: 16px; right: 20px;
}
.service-name {
  font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 2px;
  color: var(--white); margin-bottom: 8px; position: relative;
}
.service-desc {
  font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6;
  margin-bottom: 18px; position: relative;
}
.service-price {
  font-family: 'Jost', 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 20px; color: var(--green);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--black-soft); padding: 80px 0; }
.gallery-inner   { max-width: var(--max-width); margin: 0 auto; padding: 0 48px; }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 290px;
  gap: 4px; margin-top: 48px;
}
.gallery-item { overflow: hidden; position: relative; }

/* Layout modifiers */
.gallery-hero { grid-row: span 2; }           /* tall feature — gallery-1    */
.gallery-full { grid-column: 1 / -1; }        /* full-width row — shop-wide  */
.gallery-wide { grid-column: span 2; }        /* 2-col span — chairs-row, social */
.gallery-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: brightness(0.85) saturate(1.2);
}
.gallery-item:hover .gallery-img { transform: scale(1.05); filter: brightness(1) saturate(1.4); }
.gallery-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88), transparent);
  padding: 18px 16px 12px;
  font-family: 'Jost', 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  opacity: 0; transform: translateY(5px); transition: all var(--transition-med);
}
.gallery-item:hover .gallery-label,
.gallery-item:focus-within .gallery-label { opacity: 1; transform: translateY(0); }
@media (hover: none), (pointer: coarse) {
  .gallery-label { opacity: 1; transform: none; }
}
.social-block {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: #0a1500; gap: 10px; padding: 24px;
}
.social-block-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 16px;
  letter-spacing: 3px; color: var(--green);
}
.social-handle {
  font-family: 'Jost', 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 3px; color: rgba(255,255,255,0.35);
}
.social-links { display: flex; gap: 10px; margin-top: 8px; }
.social-link {
  color: var(--green); font-size: 13px;
  font-family: 'Jost', 'Barlow Condensed', sans-serif;
  letter-spacing: 2px; text-decoration: none;
  border: 1px solid rgba(154,205,50,0.3); padding: 7px 14px;
  transition: all var(--transition-fast);
}
.social-link:hover { background: rgba(154,205,50,0.1); border-color: var(--green); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-inner { max-width: var(--max-width); margin: 0 auto; }
.reviews-bar {
  display: flex; align-items: center; gap: 24px; margin-bottom: 48px; flex-wrap: wrap;
}
.rating-big { font-family: 'Bebas Neue', sans-serif; font-size: 88px; color: var(--green); line-height: 1; }
.rating-details { display: flex; flex-direction: column; gap: 5px; }
.rating-stars { font-size: 26px; color: var(--gold); letter-spacing: 3px; }
.rating-count {
  font-family: 'Jost', 'Barlow Condensed', sans-serif;
  font-size: 13px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.rating-sep { width: 1px; height: 70px; background: rgba(255,255,255,0.08); }
.rating-breakdown { display: flex; flex-direction: column; gap: 5px; }
.brow {
  display: flex; align-items: center; gap: 9px;
  font-family: 'Jost', 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 2px; color: rgba(255,255,255,0.35);
}
.brow-bar { width: 110px; height: 3px; background: rgba(255,255,255,0.07); border-radius: 2px; overflow: hidden; }
.brow-fill { height: 100%; background: var(--green); border-radius: 2px; }
.brow-fill--gold { background: var(--gold); }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card {
  background: var(--black-soft); border: 1px solid rgba(154,205,50,0.08); padding: 24px;
  transition: border-color var(--transition-med);
}
.review-card:hover { border-color: rgba(154,205,50,0.25); }
.review-qmark {
  font-family: 'Bebas Neue', sans-serif; font-size: 72px;
  color: rgba(154,205,50,0.1); line-height: 0.8; margin-bottom: 10px;
}
.review-stars { font-size: 11px; color: var(--gold); margin-bottom: 12px; }
.review-text {
  font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.6);
  margin-bottom: 18px; font-style: italic;
}
.review-footer { display: flex; justify-content: space-between; align-items: center; }
.review-author {
  font-family: 'Jost', 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--green);
}
.review-platform {
  font-size: 10px; letter-spacing: 2px; color: rgba(255,255,255,0.2);
  font-family: 'Jost', 'Barlow Condensed', sans-serif;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--black-soft); }
.faq-inner   { max-width: 800px; margin: 0 auto; }
.faq-item    { border-bottom: 1px solid rgba(255,255,255,0.07); }
.faq-q {
  width: 100%; background: none; border: none; color: var(--white);
  font-family: 'Jost', 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 17px; letter-spacing: 1px; text-align: left;
  padding: 20px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q:hover { color: var(--green); }
.faq-icon {
  font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--green);
  transition: transform var(--transition-med); flex-shrink: 0;
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-a p {
  font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.5); padding-bottom: 18px;
}
.faq-a .faq-es {
  margin-top: 8px; color: rgba(255,255,255,0.35); font-style: italic;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-a    { max-height: 500px; }

/* Map */
.map-section { margin-top: 48px; }
.map-address {
  font-family: 'Jost', 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 14px;
}
.map-embed-wrap {
  width: 100%; border: 1px solid rgba(154,205,50,0.12); overflow: hidden; position: relative;
}
.map-embed-wrap iframe { display: block; width: 100%; height: 340px; border: none; filter: grayscale(1) invert(0.9) hue-rotate(170deg); opacity: 0.75; }
.map-directions {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 14px;
  font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 3px;
  color: var(--green); text-decoration: none;
  border: 1px solid rgba(154,205,50,0.3); padding: 10px 28px;
  transition: all var(--transition-fast);
}
.map-directions:hover { background: rgba(154,205,50,0.08); border-color: var(--green); }

/* ============================================================
   JOIN THE TEAM
   ============================================================ */
.join-inner { max-width: var(--max-width); margin: 0 auto; }
.join-top {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: center; margin-bottom: 72px;
}
.join-images { position: relative; height: 480px; }
.join-img-main {
  position: absolute; top: 0; left: 0; width: 68%; height: 84%;
  object-fit: cover; border: 2px solid rgba(154,205,50,0.2);
}
.join-img-accent {
  position: absolute; bottom: 0; right: 0; width: 55%; height: 58%;
  object-fit: cover; border: 2px solid var(--gold);
}
.perks-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-bottom: 40px;
}
.perk {
  background: var(--black-soft); padding: 28px 22px;
  border: 1px solid rgba(154,205,50,0.07); position: relative; overflow: hidden;
  transition: border-color var(--transition-med), background var(--transition-med);
}
.perk:hover { border-color: rgba(154,205,50,0.2); background: rgba(154,205,50,0.02); }
.perk-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 44px;
  color: rgba(154,205,50,0.06); position: absolute; top: 10px; right: 14px; line-height: 1;
}
.perk-icon { font-size: 24px; margin-bottom: 10px; }
.perk-title {
  font-family: 'Jost', 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--green); margin-bottom: 8px;
}
.perk-text { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.6; }
.join-cta {
  background: var(--black-soft); border: 1px solid rgba(154,205,50,0.14);
  padding: 36px 44px; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.join-cta-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 26px;
  letter-spacing: 3px; color: var(--white); margin-bottom: 5px;
}
.join-cta-sub {
  font-family: 'Jost', 'Barlow Condensed', sans-serif;
  font-size: 13px; letter-spacing: 2px; color: rgba(255,255,255,0.35);
}
.join-cta-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { position: relative; overflow: hidden; text-align: center; padding: 110px 48px; }
.cta-bg {
  position: absolute; inset: 0;
  background-image: url('../assets/images/shop/cta-bg.jpg');
  background-size: cover; background-position: center top;
  filter: brightness(0.14) saturate(1.5);
}
.cta-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(154,205,50,0.1) 0%, transparent 70%);
}
.cta-content { position: relative; z-index: 2; }
.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 9vw, 96px); letter-spacing: 4px; line-height: 0.95; margin-bottom: 20px;
}
.cta-title span { color: var(--green); }
.cta-eyebrow {
  font-family: 'Jost', 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 8px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.cta-sub {
  font-family: 'Jost', 'Barlow Condensed', sans-serif;
  font-size: 15px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 40px;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-hours {
  margin-top: 28px;
  font-family: 'Jost', 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 4px; color: rgba(255,255,255,0.2);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 300;
  width: 52px; height: 52px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: transform var(--transition-fast);
}
.wa-float:hover { transform: scale(1.1); }
/* Don't paint the float over the mobile menu overlay. */
body.menu-open .wa-float { display: none; }
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #050505; padding: 56px 48px 32px;
  border-top: 1px solid rgba(154,205,50,0.08);
}
.footer-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px; margin-bottom: 44px;
}
.footer-brand-name {
  font-family: 'Bebas Neue', sans-serif; font-size: 26px;
  letter-spacing: 4px; color: var(--green); margin-bottom: 4px;
}
.footer-brand-sub {
  font-family: 'Jost', 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 6px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.footer-desc {
  font-size: 13px; color: rgba(255,255,255,0.3);
  line-height: 1.7; max-width: 260px; margin-bottom: 18px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-social-btn {
  width: 34px; height: 34px; border: 1px solid rgba(154,205,50,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-family: 'Jost', 'Barlow Condensed', sans-serif;
  font-weight: 700; color: rgba(255,255,255,0.35); text-decoration: none;
  transition: all var(--transition-fast);
}
.footer-social-btn:hover { border-color: var(--green); color: var(--green); }
.footer-col-title {
  font-family: 'Jost', 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--green); margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  text-decoration: none; font-size: 13px; color: rgba(255,255,255,0.3);
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--green); }
.footer-info strong {
  color: rgba(255,255,255,0.5); display: block;
  font-family: 'Jost', 'Barlow Condensed', sans-serif;
  letter-spacing: 1px; font-size: 11px; margin-top: 12px; margin-bottom: 2px; text-transform: uppercase;
}
.footer-info p { font-size: 13px; color: rgba(255,255,255,0.3); line-height: 1.7; }
.footer-info a { color: var(--green); text-decoration: none; font-size: 12px; }
.footer-info a:hover { text-decoration: underline; }
.footer-bottom {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; flex-wrap: wrap; gap: 10px;
}
.footer-copy {
  font-size: 11px; color: rgba(255,255,255,0.18);
  font-family: 'Jost', 'Barlow Condensed', sans-serif; letter-spacing: 2px;
}
.footer-badge {
  background: var(--green); color: var(--black);
  font-family: 'Bebas Neue', sans-serif; font-size: 12px; letter-spacing: 2px; padding: 5px 14px;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
/* Fail open: content is visible unless JS has confirmed it can animate.
   Without the .js gate, any script error leaves the whole page blank. */
.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.js .reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  nav { padding: 14px 24px; }
  nav.scrolled { padding: 10px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; padding: 14px; }
  .mobile-menu.open { display: flex; }
  section { padding: 64px 28px; }
  .barbers-section, .gallery-section { padding: 64px 28px; }
  .gallery-section { padding: 64px 0; }
  .gallery-inner { padding: 0 28px; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 380px; }
  .barbers-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .gallery-hero, .gallery-full, .gallery-wide { grid-row: span 1; grid-column: span 1; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-bar { gap: 16px; }
  .rating-sep { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .perks-grid { grid-template-columns: repeat(2, 1fr); }
  .join-top { grid-template-columns: 1fr; gap: 48px; }
  .join-images { height: 340px; }
  .join-cta { padding: 28px 32px; }
  .hero-stats { gap: 24px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
  nav { padding: 12px 18px; }
  nav.scrolled { padding: 8px 18px; }
  section { padding: 52px 18px; }
  .barbers-section { padding: 52px 18px; }
  .gallery-section { padding: 52px 0; }
  .gallery-inner { padding: 0 18px; }
  .hero { padding: 72px 18px 52px; }
  .hero-logo { width: 88px; height: 88px; }
  .hero-stats { gap: 18px; }
  .stat-num { font-size: 30px; }
  .stat-label { font-size: 9px; letter-spacing: 3px; }
  .hero-actions { flex-direction: column; align-items: center; width: 100%; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; padding: 14px 24px; font-size: 18px; }
  .about-images { height: 300px; }
  .about-badge { width: 84px; height: 84px; font-size: 11px; }
  .about-badge strong { font-size: 22px; }
  .about-pillars { grid-template-columns: 1fr; }
  .barbers-grid { grid-template-columns: 1fr 1fr; }
  .barbers-header { flex-direction: column; align-items: flex-start; }
  .barbers-header .btn-outline { width: 100%; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item { height: 220px; }
  .gallery-hero, .gallery-full, .gallery-wide { grid-row: span 1; grid-column: span 1; height: 220px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .rating-big { font-size: 72px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .perks-grid { grid-template-columns: 1fr; }
  .join-images { height: 260px; }
  .join-cta { padding: 24px 20px; }
  .join-cta-btns { flex-direction: column; width: 100%; }
  .join-cta-btns .btn-primary, .join-cta-btns .btn-outline { text-align: center; }
  .cta-section { padding: 72px 18px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn-primary, .cta-btns .btn-outline { width: 100%; text-align: center; }
  .faq-q { font-size: 15px; }
  .wa-float { bottom: 16px; right: 16px; width: 46px; height: 46px; }
  .wa-float svg { width: 24px; height: 24px; }
  .ticker-item { font-size: 13px; padding: 0 24px; }
  .mobile-menu a { font-size: 28px; }
  .map-embed-wrap iframe { height: 240px; }
}

/* ============================================================
   RESPONSIVE — TINY (≤ 380px)
   ============================================================ */
@media (max-width: 380px) {
  .barbers-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 12px; }
}
