/* ============================================================
   Style World Barbers — Premium Stylesheet
   Colors: Black, Navy, Red, Gold
   ============================================================ */

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

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

  --container: 1180px;
  --radius:    4px;
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ── 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.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
p  { color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 18px; }
p:last-child { margin-bottom: 0; }

/* ── Utility ────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 18px;
}
.section-subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  max-width: 580px;
  font-weight: 300;
  line-height: 1.75;
}
.gold-line {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 24px 0 48px;
  transition: width 1.1s var(--ease-out) 0.3s;
}
.gold-line.is-visible { width: 80px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease-out);
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: #a5182f;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(196,30,58,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(212,175,55,0.25);
}

/* ── Scroll Reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-group > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
  will-change: opacity, transform;
}
.reveal-group.is-visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.reveal-group.is-visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.1s; }
.reveal-group.is-visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.2s; }
.reveal-group.is-visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.1s; }
.reveal-group.is-visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.2s; }
.reveal-group.is-visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.3s; }

/* ── Navigation ─────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 28px;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
#navbar.scrolled {
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(212,175,55,0.15);
}
.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: 44px;
  height: 44px;
  border-radius: 50%;
  transition: transform 0.4s var(--ease-out);
}
.nav-logo:hover img { transform: rotate(-5deg) scale(1.05); }
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo-text span:first-child {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.nav-logo-text span:last-child {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
  transform-origin: left;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 20px; }
.nav-phone {
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  transition: color 0.3s ease;
  border: 1px solid rgba(212,175,55,0.3);
  padding: 7px 16px;
  border-radius: var(--radius);
}
.nav-phone:hover {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.35s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(13,13,13,0.98);
  backdrop-filter: blur(12px);
  padding: 20px 28px 28px;
  z-index: 999;
  border-top: 1px solid var(--border);
  transform: translateY(-110%);
  opacity: 0;
  transition: transform 0.45s var(--ease-out), opacity 0.45s 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: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.mobile-nav a:hover { color: var(--gold); padding-left: 8px; }
.mobile-nav-phone {
  display: block;
  margin-top: 20px;
  padding: 14px 24px !important;
  background: var(--red);
  border-radius: var(--radius);
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white) !important;
  border: none !important;
  letter-spacing: 0.05em;
  padding-left: 0 !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/shop-primary.jpg');
  background-size: cover;
  background-position: center top;
  filter: brightness(0.3) saturate(0.8);
  transform: scale(1.08);
  animation: heroZoom 18s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.14); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13,13,13,0.6) 0%,
    rgba(13,13,13,0.3) 40%,
    rgba(13,13,13,0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 28px 100px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

/* Hero elements animate in on load */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 30px;
  padding: 7px 18px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  animation: fadeUp 1s 0.15s var(--ease-out) both;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 700px;
  animation: fadeUp 1s 0.3s var(--ease-out) both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin-bottom: 44px;
  line-height: 1.8;
  font-weight: 300;
  animation: fadeUp 1s 0.45s var(--ease-out) both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeUp 1s 0.6s var(--ease-out) both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  animation: fadeUp 1s 0.75s var(--ease-out) both;
}
.hero-stat {
  padding: 0 36px 0 0;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 5px;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  margin: 0 36px 0 0;
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255,255,255,0.3);
  animation: heroScroll 2.5s ease-in-out infinite;
}
.hero-scroll svg { width: 22px; height: 22px; }
@keyframes heroScroll {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.7; transform: translateX(-50%) translateY(10px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(35px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Trust Bar ──────────────────────────────────────────── */
#trust {
  background: var(--navy);
  border-top: 1px solid rgba(212,175,55,0.4);
  border-bottom: 1px solid rgba(212,175,55,0.4);
  padding: 18px 28px;
  overflow: hidden;
}
.trust-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 36px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.trust-item svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }
.trust-divider { color: rgba(212,175,55,0.4); font-size: 1.2rem; }

/* ── Services ───────────────────────────────────────────── */
#services {
  padding: 120px 28px;
  background: var(--black);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.4s var(--ease-out);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.5s var(--ease-out);
}
.service-card:hover { border-color: rgba(212,175,55,0.2); transform: translateY(-5px); }
.service-card:hover::before { right: 0; }

.service-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(212,175,55,0.08);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  transition: color 0.4s ease;
}
.service-card:hover .service-num { color: rgba(212,175,55,0.14); }

.service-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.service-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin: 0;
}

.services-note {
  margin-top: 36px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 12px;
}
.services-note a { color: var(--gold); font-weight: 600; white-space: nowrap; }
.services-note a:hover { text-decoration: underline; }
.services-note svg { color: var(--gold); width: 18px; height: 18px; flex-shrink: 0; }

/* ── Gallery ────────────────────────────────────────────── */
#gallery {
  padding: 120px 28px;
  background: var(--dark);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  background: var(--card-bg);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
  will-change: transform;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.88) 0%, rgba(13,13,13,0.1) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Gallery item staggered reveal */
.gallery-item.reveal { transform: translateY(30px) scale(0.98); }
.gallery-item.reveal.is-visible { transform: translateY(0) scale(1); }
.gallery-item:nth-child(3n+2).reveal { transition-delay: 0.1s; }
.gallery-item:nth-child(3n+3).reveal { transition-delay: 0.2s; }

/* ── About ──────────────────────────────────────────────── */
#about {
  padding: 120px 28px;
  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: var(--radius);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  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 40px rgba(212,175,55,0.4);
}
.about-badge-year { font-size: 1.8rem; font-family: var(--font-heading); }
.about-badge-text { font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; }

.about-text .gold-line { width: 60px; }
.about-text .gold-line.is-visible { width: 60px; }

.about-differentiators {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.differentiator {
  padding: 22px 20px;
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  transition: border-color 0.4s ease, transform 0.4s var(--ease-out);
}
.differentiator:hover { border-color: rgba(212,175,55,0.25); transform: translateY(-3px); }
.differentiator-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  color: var(--gold);
}
.differentiator-icon svg { width: 100%; height: 100%; }
.differentiator-title {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.differentiator-text { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.55; }

/* ── Hours & Map ────────────────────────────────────────── */
#hours {
  padding: 120px 28px;
  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: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.92rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: rgba(255,255,255,0.55); font-weight: 400; }
.hours-day.today {
  color: var(--gold);
  font-weight: 600;
}
.hours-time { font-weight: 500; color: rgba(255,255,255,0.85); }
.hours-closed { color: var(--grey); font-weight: 400; }

.contact-info-block {
  margin-top: 32px;
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
}
.contact-detail svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; }
.contact-detail a { color: rgba(255,255,255,0.75); transition: color 0.3s ease; }
.contact-detail a:hover { color: var(--gold); }
.contact-detail span { color: rgba(255,255,255,0.75); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.map-wrap iframe {
  width: 100%;
  height: 440px;
  display: block;
  border: none;
  filter: grayscale(30%) brightness(0.9);
}
.map-cta { margin-top: 16px; }

/* ── FAQ ────────────────────────────────────────────────── */
#faq {
  padding: 120px 28px;
  background: var(--black);
}
.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}
.faq-list { margin-top: 8px; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.3s ease;
  letter-spacing: 0.01em;
}
.faq-question:hover { color: var(--gold); }
.faq-question svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.4s var(--ease-out);
}
.faq-item.open .faq-question { color: var(--white); }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out), padding 0.25s ease;
}
.faq-item.open .faq-answer { max-height: 320px; }
.faq-answer p {
  padding: 0 0 24px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin: 0;
}
.faq-answer strong { color: rgba(255,255,255,0.85); font-weight: 600; }
.faq-answer a { color: var(--gold); }

/* ── Reviews ────────────────────────────────────────────── */
#reviews {
  padding: 120px 28px;
  background: var(--dark);
}
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 56px;
}
.reviews-rating-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.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: 18px; height: 18px; color: var(--gold); fill: var(--gold); }
.rating-count { font-size: 0.82rem; color: var(--grey); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.4s ease, transform 0.4s var(--ease-out);
}
.review-card:hover { border-color: rgba(212,175,55,0.2); transform: translateY(-4px); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.9rem; color: var(--white); }
.review-date { font-size: 0.76rem; color: var(--grey); margin-top: 2px; }
.review-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.review-stars svg { width: 14px; height: 14px; color: var(--gold); fill: var(--gold); }
.review-text { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
.google-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}
.google-badge svg { width: 14px; height: 14px; }

.reviews-loading {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 60px 24px;
  color: rgba(255,255,255,0.35);
  font-size: 0.88rem;
}
.reviews-loading-spinner {
  width: 32px;
  height: 32px;
  border: 2px solid rgba(212,175,55,0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.reviews-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 24px;
  color: rgba(255,255,255,0.35);
  font-size: 0.9rem;
  line-height: 1.7;
}
.review-avatar--photo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.reviews-cta {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  background: var(--white);
  color: #333;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  transition: all 0.35s var(--ease-out);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.btn-google:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.3); }

/* ── Contact ────────────────────────────────────────────── */
#contact {
  padding: 120px 28px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}
#contact::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,30,58,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.contact-inner {
  position: relative;
  z-index: 1;
  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-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: border-color 0.4s ease, background 0.4s ease;
  min-width: 0;
  overflow: hidden;
}
.contact-card:hover {
  border-color: rgba(212,175,55,0.35);
  background: rgba(212,175,55,0.06);
}
.contact-card-icon {
  width: 42px;
  height: 42px;
  background: rgba(212,175,55,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg { width: 18px; height: 18px; color: var(--gold); }
.contact-card > div:last-child { min-width: 0; flex: 1; }
.contact-card-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 3px;
}
.contact-card-value {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  overflow-wrap: break-word;
  word-break: break-word;
}
.social-links { display: flex; gap: 12px; margin-top: 28px; }
.social-link {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s var(--ease-out);
}
.social-link svg { width: 18px; height: 18px; color: rgba(255,255,255,0.7); }
.social-link:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.social-link:hover svg { color: var(--black); }

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.walkin-card {
  background: rgba(196,30,58,0.12);
  border: 1px solid rgba(196,30,58,0.3);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
}
.walkin-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--gold);
}
.walkin-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 10px;
}
.walkin-card p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.contact-logo-card {
  padding: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  text-align: center;
}
.contact-logo-card img {
  margin: 0 auto 16px;
  border-radius: 50%;
  width: 88px;
  height: 88px;
}
.contact-logo-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 4px;
}
.contact-logo-sub {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Footer ─────────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 44px 28px;
}
.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: 40px; height: 40px; border-radius: 50%; }
.footer-logo-text span {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo-text small {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-nap { font-size: 0.8rem; color: rgba(255,255,255,0.35); line-height: 1.7; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.04);
  margin-top: 28px;
  padding-top: 24px;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.2);
  text-align: center;
  line-height: 1.6;
}

/* ── Back to top ────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 42px;
  height: 42px;
  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 0.35s ease, transform 0.35s ease;
  z-index: 500;
  box-shadow: 0 4px 20px rgba(212,175,55,0.35);
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { transform: translateY(-3px); }
#back-to-top svg { width: 18px; height: 18px; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 56px; }
  .about-image-wrap { max-width: 420px; }
  .hours-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 56px; }
}

@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); gap: 10px; }
  .gallery-item { aspect-ratio: 2 / 3; }
  /* With 9 items at 2-col: last item may orphan — push to full width */
  .gallery-item:last-child:nth-child(odd) { grid-column: span 2; aspect-ratio: 16/9; }

  .hero-stats { gap: 0; }
  .hero-stat { padding: 0 24px 0 0; }
  .hero-stat-divider { margin-right: 24px; }

  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-differentiators { grid-template-columns: 1fr; }
  .reviews-header { flex-direction: column; }
}

@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; gap: 10px; }
  .gallery-item { aspect-ratio: 4/5; }
  .gallery-item:last-child:nth-child(odd) { grid-column: span 1; aspect-ratio: 4/5; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .trust-divider { display: none; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-stat-divider { display: none; }
  .hero-stat { padding: 0; }
}
