/* ============================================================
   Style World Barbers — Stylesheet
   Colors drawn from logo: Black, Navy, Red, Gold
   ============================================================ */

:root {
  --black:   #0D0D0D;
  --navy:    #1B2A6B;
  --red:     #C41E3A;
  --gold:    #D4AF37;
  --white:   #FFFFFF;
  --offwhite: #F7F5F0;
  --grey:    #888888;
  --dark:    #1A1A1A;
  --card-bg: #161616;
  --border:  rgba(212,175,55,0.3);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --container: 1180px;
  --radius:    6px;
  --transition: 0.25s ease;
}

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

/* ── Utility ────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}
.section-subtitle {
  color: var(--grey);
  font-size: 1.05rem;
  max-width: 600px;
}
.gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 20px 0 40px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: #a5182f; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); }

/* ── Navigation ─────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(13,13,13,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img { width: 52px; height: 52px; border-radius: 50%; }
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo-text span:first-child {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.nav-logo-text span:last-child {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-phone {
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--white); }
.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: var(--transition);
}
.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); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(13,13,13,0.98);
  padding: 24px;
  z-index: 999;
  border-top: 1px solid var(--border);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-phone {
  display: block;
  margin-top: 20px;
  padding: 14px 24px;
  background: var(--red);
  border-radius: var(--radius);
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white) !important;
  border: none !important;
}

/* ── Hero ───────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/unnamed.webp');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,13,0.7) 0%,
    rgba(27,42,107,0.3) 50%,
    rgba(13,13,13,0.8) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.15);
  border: 1px solid var(--gold);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 680px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Trust Bar ──────────────────────────────────────────── */
#trust {
  background: var(--navy);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 20px 24px;
}
.trust-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 40px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}
.trust-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.trust-divider { color: var(--gold); font-size: 1.2rem; }

/* ── Services ───────────────────────────────────────────── */
#services {
  padding: 96px 24px;
  background: var(--black);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 8px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: border-color var(--transition), transform var(--transition);
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}
.service-body { flex: 1; }
.service-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 6px;
}
.service-desc {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.5;
  margin-bottom: 16px;
}
.service-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.service-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--grey);
}
.services-note {
  margin-top: 32px;
  padding: 20px 24px;
  background: rgba(27,42,107,0.2);
  border: 1px solid rgba(27,42,107,0.5);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 10px;
}
.services-note svg { color: var(--navy); width: 20px; height: 20px; flex-shrink: 0; }

/* ── Gallery ────────────────────────────────────────────── */
#gallery {
  padding: 96px 24px;
  background: var(--dark);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,42,107,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── About ──────────────────────────────────────────────── */
#about {
  padding: 96px 24px;
  background: var(--black);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}
.about-image-wrap {
  position: relative;
}
.about-image {
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.about-image--logo {
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--card-bg);
  padding: 40px;
  border: 1px solid var(--border);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 8px 32px rgba(212,175,55,0.3);
}
.about-badge-year { font-size: 2rem; font-family: var(--font-heading); }
.about-badge-text { font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; }
.about-text { }
.about-differentiators {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.differentiator {
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color var(--transition);
}
.differentiator:hover { border-color: var(--gold); }
.differentiator-icon { font-size: 1.5rem; margin-bottom: 8px; }
.differentiator-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 4px;
}
.differentiator-text { font-size: 0.82rem; color: var(--grey); }

/* ── Hours & Map ────────────────────────────────────────── */
#hours {
  padding: 96px 24px;
  background: var(--dark);
}
.hours-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
}
.hours-table {
  margin-top: 8px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.95rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: rgba(255,255,255,0.7); font-weight: 500; }
.hours-day.today { color: var(--gold); font-weight: 700; }
.hours-time { font-weight: 600; color: var(--white); }
.hours-closed { color: var(--grey); font-weight: 400; }
.hours-row.sunday .hours-time { color: var(--grey); }
.contact-info-block {
  margin-top: 32px;
  padding: 24px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
}
.contact-detail svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-detail a { color: var(--white); transition: color var(--transition); }
.contact-detail a:hover { color: var(--gold); }
.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.map-wrap iframe {
  width: 100%;
  height: 460px;
  display: block;
  border: none;
  filter: grayscale(20%);
}
.map-cta {
  margin-top: 16px;
}

/* ── FAQ ────────────────────────────────────────────────── */
#faq {
  padding: 96px 24px;
  background: var(--black);
}
.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}
.faq-list { margin-top: 8px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 0 24px;
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.7;
}
.faq-answer strong { color: var(--white); }

/* ── Reviews ────────────────────────────────────────────── */
#reviews {
  padding: 96px 24px;
  background: var(--dark);
}
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 48px;
}
.reviews-rating-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.rating-big {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.rating-stars { display: flex; gap: 4px; margin: 6px 0; }
.rating-stars svg { width: 20px; height: 20px; color: var(--gold); fill: var(--gold); }
.rating-count { font-size: 0.85rem; color: var(--grey); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
}
.review-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 0.95rem; color: var(--white); }
.review-date { font-size: 0.8rem; color: var(--grey); margin-top: 2px; }
.review-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.review-stars svg { width: 16px; height: 16px; color: var(--gold); fill: var(--gold); }
.review-text { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.65; }
.google-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--grey);
}
.google-badge svg { width: 16px; height: 16px; }
/* Reviews dynamic states */
.reviews-loading {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px 24px;
  color: var(--grey);
  font-size: 0.9rem;
}
.reviews-loading-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.reviews-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.7;
}

.review-avatar--photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: none;
  font-size: 0;
}

.reviews-cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--white);
  color: #333;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.btn-google:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.3); }

/* ── Contact ────────────────────────────────────────────── */
#contact {
  padding: 96px 24px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(212,175,55,0.05);
  pointer-events: none;
}
.contact-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact-left .section-title { color: var(--white); }
.contact-left .section-subtitle { color: rgba(255,255,255,0.7); }
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  transition: border-color var(--transition), background var(--transition);
  min-width: 0;
  overflow: hidden;
}
.contact-card:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,0.07);
}
.contact-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(212,175,55,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg { width: 20px; height: 20px; color: var(--gold); }
.contact-card > div:last-child { min-width: 0; flex: 1; }
.contact-card-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2px;
}
.contact-card-value {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  overflow-wrap: break-word;
  word-break: break-word;
  min-width: 0;
}
.contact-card-value a { color: var(--white); transition: color var(--transition); }
.contact-card-value a:hover { color: var(--gold); }
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.social-link {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-link svg { width: 20px; height: 20px; color: var(--white); }
.social-link:hover { background: var(--gold); border-color: var(--gold); }
.social-link:hover svg { color: var(--black); }
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.walkin-card {
  background: rgba(196,30,58,0.15);
  border: 1px solid rgba(196,30,58,0.4);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
}
.walkin-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
}
.walkin-card p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.walkin-icon { font-size: 2.5rem; margin-bottom: 12px; }

/* ── Footer ─────────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo img { width: 44px; height: 44px; border-radius: 50%; }
.footer-logo-text span {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo-text small {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-nap {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.7;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.82rem;
  color: var(--grey);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 24px;
  padding-top: 20px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ── Back to top ────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 500;
  box-shadow: 0 4px 16px rgba(212,175,55,0.3);
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top svg { width: 20px; height: 20px; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap { max-width: 480px; }
  .hours-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-item--wide { grid-column: span 2; }

  .about-differentiators { grid-template-columns: 1fr; }

  .reviews-header { flex-direction: column; }
  .hero-stats { gap: 24px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .trust-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
}
