/* ============================================================
   BELVEDERE BARBERSHOP — DESIGN SYSTEM
   Premium Men's Grooming | Cambridge, MA
   ============================================================ */

/* ── 1. DESIGN TOKENS ─────────────────────────────────────── */
:root {
  /* Colors */
  --black:        #0A0A0A;
  --charcoal:     #1A1A1A;
  --charcoal-mid: #262626;
  --charcoal-lt:  #333333;
  --gold:         #A8A8A8;  /* silver */
  --gold-hover:   #888888;
  --gold-pale:    #F0F0F0;
  --gold-dark:    #606060;
  --white:        #FFFFFF;
  --off-white:    #F5F5F5;  /* neutral */
  --gray-dark:    #4B4B4B;
  --gray:         #6B7280;
  --gray-light:   #9CA3AF;
  --gray-border:  #E5E7EB;
  --red:          #DC2626;

  /* Typography */
  --font-serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;
  --text-7xl:  4.5rem;

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Layout */
  --container: 1200px;
  --container-sm: 800px;

  /* Radius */
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.12);
  --shadow:     0 4px 16px rgba(0,0,0,0.12);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.16);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.20);
  --shadow-xl:  0 24px 64px rgba(0,0,0,0.28);
  --shadow-silver: 0 8px 32px rgba(0,0,0,0.15);

  /* Transitions */
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Header height */
  --header-h: 80px;
}

/* ── 2. RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

/* ── 3. TYPOGRAPHY ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p { line-height: 1.7; color: var(--gray-dark); }

.text-serif { font-family: var(--font-serif); }
.text-gold  { color: var(--gold); }
.text-white { color: var(--white); }
.text-gray  { color: var(--gray); }
.text-center { text-align: center; }
.text-sm { font-size: var(--text-sm); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.text-2xl { font-size: var(--text-2xl); }

/* ── 4. LAYOUT ────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.container-sm {
  max-width: var(--container-sm);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.section {
  padding: var(--sp-24) 0;
}

.section-sm {
  padding: var(--sp-16) 0;
}

.section-dark {
  background-color: var(--charcoal);
  color: var(--white);
}

.section-black {
  background-color: var(--black);
  color: var(--white);
}

.section-off-white {
  background-color: var(--off-white);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-8); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-8); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-8); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-4 { gap: var(--sp-4); }
.gap-6 { gap: var(--sp-6); }
.gap-8 { gap: var(--sp-8); }

/* ── 5. SECTION HEADERS ───────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: var(--sp-16);
}

.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}

.section-header h2 {
  margin-bottom: var(--sp-4);
  color: var(--black);
}

.section-dark .section-header h2,
.section-black .section-header h2 {
  color: var(--white);
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: var(--text-lg);
  color: var(--gray);
}

.section-dark .section-header p,
.section-black .section-header p {
  color: var(--gray-light);
}

.gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: var(--sp-4) auto var(--sp-6);
}

/* ── 6. BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-silver);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-outline-silver {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  border: 2px solid var(--charcoal);
}
.btn-dark:hover {
  background: var(--black);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: var(--text-base);
}

.btn-sm {
  padding: 10px 20px;
  font-size: var(--text-xs);
}

/* ── 7. HEADER & NAVIGATION ───────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--sp-6);
  max-width: 1400px;
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: invert(1) brightness(1.0);  /* grey logo → white on dark header */
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.nav-link {
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius-sm);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: var(--sp-4);
  right: var(--sp-4);
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.header-phone {
  font-size: var(--text-sm);
  color: var(--gray-light);
  display: none;
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  cursor: pointer;
  z-index: 1010;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  opacity: 0;
  transition: opacity var(--transition);
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: var(--text-4xl);
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: -0.01em;
}

.mobile-nav-link:hover {
  color: var(--gold);
}

.mobile-menu-footer {
  position: absolute;
  bottom: var(--sp-8);
  text-align: center;
}

.mobile-menu-footer p {
  color: var(--gray);
  font-size: var(--text-sm);
}

/* Mobile sticky CTA */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: var(--sp-3) var(--sp-4);
  background: var(--charcoal);
  text-align: center;
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}

/* ── 8. HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.85) 0%,
    rgba(10,10,10,0.60) 50%,
    rgba(10,10,10,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--sp-20) var(--sp-6);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-6);
  opacity: 0;
  animation: fadeInUp 0.8s 0.3s ease forwards;
}

.hero-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, var(--text-7xl));
  color: var(--white);
  max-width: 820px;
  margin-bottom: var(--sp-6);
  opacity: 0;
  animation: fadeInUp 0.8s 0.5s ease forwards;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
  position: relative;
}

.hero-sub {
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin-bottom: var(--sp-10);
  line-height: 1.6;
  opacity: 0;
  animation: fadeInUp 0.8s 0.7s ease forwards;
}

.hero-ctas {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-16);
  opacity: 0;
  animation: fadeInUp 0.8s 0.9s ease forwards;
}

.hero-badges {
  display: flex;
  gap: var(--sp-6);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s 1.1s ease forwards;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
}

.hero-badge svg {
  color: var(--gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.4);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── 9. STATS BAR ─────────────────────────────────────────── */
.stats-bar {
  background: var(--black);
  padding: var(--sp-12) 0;
  border-top: 1px solid var(--charcoal-mid);
  border-bottom: 1px solid var(--charcoal-mid);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-8);
}

.stat-item {
  text-align: center;
  padding: var(--sp-6);
  border-right: 1px solid var(--charcoal-mid);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, var(--text-6xl));
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--sp-2);
  display: block;
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--gray-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── 10. SERVICE CARDS ────────────────────────────────────── */
.service-card {
  background: var(--charcoal);
  border: 1px solid var(--charcoal-mid);
  border-radius: var(--radius);
  padding: var(--sp-10) var(--sp-8);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-silver);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(160,160,160,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-6);
  color: var(--gold);
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: var(--text-2xl);
  color: var(--white);
  margin-bottom: var(--sp-3);
}

.service-card p {
  color: var(--gray-light);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--charcoal-mid);
}

.service-price {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  color: var(--gold);
  font-weight: 700;
}

.service-duration {
  font-size: var(--text-xs);
  color: var(--gray);
  letter-spacing: 0.05em;
}

/* Full services page */
.services-section {
  padding: var(--sp-16) 0;
  border-bottom: 1px solid var(--gray-border);
}

.services-section:last-of-type {
  border-bottom: none;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.service-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all var(--transition);
}

.service-item:hover {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.service-item-info h4 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--black);
  margin-bottom: var(--sp-1);
  font-family: var(--font-sans);
}

.service-item-info p {
  font-size: var(--text-sm);
  color: var(--gray);
  line-height: 1.5;
}

.service-item-meta {
  flex-shrink: 0;
  text-align: right;
}

.service-item-price {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--gold);
}

.service-item-time {
  font-size: var(--text-xs);
  color: var(--gray-light);
  white-space: nowrap;
}

/* ── 11. WHY CHOOSE US ────────────────────────────────────── */
.feature-card {
  padding: var(--sp-8);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  transition: all var(--transition);
  background: var(--white);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.4rem;
  margin-bottom: var(--sp-5);
}

.feature-card h3 {
  font-size: var(--text-xl);
  color: var(--black);
  margin-bottom: var(--sp-3);
}

.feature-card p {
  font-size: var(--text-sm);
  color: var(--gray);
  line-height: 1.7;
}

/* ── 12. TEAM CARDS ───────────────────────────────────────── */
.team-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--charcoal);
  transition: all var(--transition);
  position: relative;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.team-card-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.team-card:hover .team-card-img img {
  transform: scale(1.08);
}

.team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-6);
  opacity: 0;
  transition: opacity var(--transition);
}

.team-card:hover .team-card-overlay {
  opacity: 1;
}

.team-card-body {
  padding: var(--sp-6);
}

.team-card-name {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  color: var(--white);
  margin-bottom: var(--sp-1);
}

.team-card-title {
  font-size: var(--text-sm);
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: var(--sp-3);
}

.team-card-specialty {
  font-size: var(--text-sm);
  color: var(--gray-light);
  margin-bottom: var(--sp-5);
}

.team-card-exp {
  font-size: var(--text-xs);
  color: var(--gold);
  letter-spacing: 0.08em;
}

/* ── 13. REVIEW CARDS ─────────────────────────────────────── */
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  transition: all var(--transition);
  position: relative;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.review-card::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 0.8;
  color: var(--gold-pale);
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-6);
  pointer-events: none;
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--sp-4);
}

.review-stars svg {
  width: 18px;
  height: 18px;
  color: #FBBC05;   /* Google yellow — stars are always yellow */
  fill: #FBBC05;
}

.review-stars i {
  color: #FBBC05;
  font-size: 1rem;
}

.review-text {
  font-size: var(--text-base);
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
  position: relative;
  z-index: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}

.review-name {
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--black);
  margin-bottom: 2px;
}

.review-date {
  font-size: var(--text-xs);
  color: var(--gray-light);
}

.review-source {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--text-xs);
  color: var(--gray);
  margin-left: auto;
}

/* ── 14. GALLERY ──────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--charcoal-mid);
}

.gallery-item.tall { aspect-ratio: 1/1.5; grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-zoom {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.2rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

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

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: var(--sp-6);
  right: var(--sp-6);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-close:hover { background: var(--gold); color: var(--black); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-nav:hover { background: var(--gold); color: var(--black); }
.lightbox-prev { left: var(--sp-6); }
.lightbox-next { right: var(--sp-6); }

/* ── 15. LOCATION / HOURS ─────────────────────────────────── */
.hours-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--charcoal-mid);
}

.hours-row:last-child { border-bottom: none; }

.hours-day {
  font-size: var(--text-sm);
  color: var(--gray-light);
  font-weight: 500;
}

.hours-time {
  font-size: var(--text-sm);
  color: var(--white);
  font-weight: 600;
}

.hours-time.closed { color: var(--gray); }

.hours-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: rgba(160,160,160,0.12);
  border: 1px solid rgba(160,160,160,0.3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-6);
}

.hours-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: #22c55e;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  border: 2px solid var(--charcoal-mid);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(80%) invert(92%) contrast(83%);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(160,160,160,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-info-text span {
  display: block;
  font-size: var(--text-xs);
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

.contact-info-text a,
.contact-info-text p {
  font-size: var(--text-base);
  color: var(--white);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
}

.contact-info-text a:hover { color: var(--gold); }

/* ── 16. CONTACT FORM ─────────────────────────────────────── */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-10);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--sp-5);
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--black);
  margin-bottom: var(--sp-2);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius);
  font-size: var(--text-base);
  color: var(--black);
  background: var(--off-white);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(160,160,160,0.12);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

/* ── 17. CTA SECTION ──────────────────────────────────────── */
.cta-section {
  background: var(--black);
  padding: var(--sp-24) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
  margin-bottom: var(--sp-4);
}

.cta-section p {
  color: var(--gray-light);
  font-size: var(--text-xl);
  max-width: 500px;
  margin: 0 auto var(--sp-10);
}

/* ── 18. FOOTER ───────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--charcoal-mid);
  padding: var(--sp-20) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-16);
  border-bottom: 1px solid var(--charcoal-mid);
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: var(--text-base);
  color: var(--white);
  margin-bottom: var(--sp-5);
  letter-spacing: 0.05em;
}

.footer-col .footer-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-5);
  display: block;
}

.footer-col p {
  font-size: var(--text-sm);
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-link {
  font-size: var(--text-sm);
  color: var(--gray);
  transition: color var(--transition);
}

.footer-link:hover { color: var(--gold); }

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer-hour-row {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
}

.footer-hour-day { color: var(--gray); }
.footer-hour-time { color: var(--white); font-weight: 500; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--gray);
}

.footer-contact-item svg {
  color: var(--gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a { color: var(--gray); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--charcoal-mid);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  font-size: 0.9rem;
  transition: all var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.footer-bottom {
  padding: var(--sp-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

.footer-copyright {
  font-size: var(--text-xs);
  color: var(--gray);
}

.footer-legal-links {
  display: flex;
  gap: var(--sp-5);
}

.footer-legal-link {
  font-size: var(--text-xs);
  color: var(--gray);
  transition: color var(--transition);
}

.footer-legal-link:hover { color: var(--gold); }

/* ── 19. PAGE HERO (inner pages) ──────────────────────────── */
.page-hero {
  padding: calc(var(--header-h) + var(--sp-20)) 0 var(--sp-20);
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-size: cover;
  background-position: center;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl));
  margin-bottom: var(--sp-4);
}

.page-hero p {
  color: var(--gray-light);
  font-size: var(--text-xl);
  max-width: 540px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  justify-content: center;
  font-size: var(--text-sm);
  color: var(--gray);
  margin-bottom: var(--sp-6);
}

.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb-sep { color: var(--gray); }

/* ── 20. ABOUT PAGE ───────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  bottom: var(--sp-8);
  right: calc(-1 * var(--sp-8));
  background: var(--gold);
  color: var(--black);
  padding: var(--sp-4) var(--sp-6);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-img-badge-num {
  font-family: var(--font-serif);
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1;
  display: block;
}

.about-img-badge-text {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.value-card {
  text-align: center;
  padding: var(--sp-8) var(--sp-5);
  background: var(--charcoal);
  border-radius: var(--radius);
  border: 1px solid var(--charcoal-mid);
  transition: all var(--transition);
}

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

.value-icon {
  font-size: 2rem;
  margin-bottom: var(--sp-4);
  display: block;
}

.value-card h4 {
  font-size: var(--text-lg);
  color: var(--white);
  margin-bottom: var(--sp-2);
}

.value-card p {
  font-size: var(--text-sm);
  color: var(--gray-light);
  line-height: 1.6;
}

/* ── 21. ANIMATIONS ───────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Only hide content when JS is confirmed running */
body.js-ready .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
body.js-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

body.js-ready .reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
body.js-ready .reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

body.js-ready .reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
body.js-ready .reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ── 22. UTILITIES ────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
.mb-8 { margin-bottom: var(--sp-8); }
.pb-0 { padding-bottom: 0; }

/* ── 23. RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .about-split { grid-template-columns: 1fr; }
  .about-img-badge { right: var(--sp-4); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }
  h3 { font-size: var(--text-2xl); }

  .section { padding: var(--sp-16) 0; }

  /* Nav */
  .site-nav { display: none; }
  .header-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .sticky-mobile-cta { display: block; }

  /* Grids */
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-4);
  }
  .stat-item { border-right: none; border-bottom: 1px solid var(--charcoal-mid); }
  .stat-item:last-child, .stat-item:nth-last-child(2) { border-bottom: none; }

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

  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-ctas { flex-direction: column; align-items: flex-start; }

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

  .values-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-form { padding: var(--sp-6); }

  .map-wrapper { height: 280px; }

  body { padding-bottom: 60px; } /* room for sticky CTA */
}

@media (max-width: 480px) {
  :root { --sp-6: 1rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-badges { flex-direction: column; gap: var(--sp-3); }
  .lightbox-nav { display: none; }
}
