@import url('https://fonts.googleapis.com/css2?family=Black+Han+Sans&family=Inter:wght@300;400;500;600;700&display=swap');

/* =============================================
   CSS VARIABLES
============================================= */
:root {
  --navy: #0a0f1e;
  --navy-mid: #0d1528;
  --black: #080808;
  --electric: #1e6fff;
  --electric-bright: #3d84ff;
  --electric-glow: rgba(30, 111, 255, 0.4);
  --silver: #c0c0c0;
  --silver-dim: #8a8fa8;
  --white: #f8f9ff;
  --grey-light: #e8eaf0;
  --grey-dark: #1a2035;
  --stripe-opacity: 0.04;
  --transition-fast: 0.2s ease;
  --transition-mid: 0.4s ease;
  --transition-slow: 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-glow: 0 0 30px rgba(30, 111, 255, 0.35), 0 0 60px rgba(30, 111, 255, 0.15);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-card-hover: 0 12px 48px rgba(0, 0, 0, 0.6);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

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

ul {
  list-style: none;
}

/* =============================================
   TYPOGRAPHY
============================================= */
.font-display {
  font-family: 'Black Han Sans', sans-serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

h1, h2, h3, h4, h5 {
  line-height: 1.15;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Black Han Sans', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.05;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--silver-dim);
  max-width: 580px;
  line-height: 1.7;
}

/* =============================================
   PASSWORD GATE
============================================= */
#password-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}

#password-gate::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(30, 111, 255, 0.03) 40px,
    rgba(30, 111, 255, 0.03) 80px
  );
  animation: stripeMove 20s linear infinite;
}

.gate-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.gate-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.gate-logo .brand-main {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 3rem;
  color: var(--electric);
  line-height: 1;
  letter-spacing: 0.05em;
}

.gate-logo .brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--silver-dim);
}

.gate-badge {
  display: inline-block;
  background: rgba(30, 111, 255, 0.1);
  border: 1px solid rgba(30, 111, 255, 0.3);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--electric);
}

.gate-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.gate-form h2 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--silver);
  margin-bottom: 0.5rem;
}

.gate-form input {
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-align: center;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.gate-form input:focus {
  border-color: var(--electric);
  box-shadow: 0 0 0 3px rgba(30, 111, 255, 0.2);
}

.gate-form input::placeholder {
  color: var(--silver-dim);
  letter-spacing: 0.05em;
}

.gate-error {
  color: #ff4f6a;
  font-size: 0.82rem;
  display: none;
  margin-top: -0.5rem;
}

.gate-error.show {
  display: block;
}

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all var(--transition-mid);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--electric);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(30, 111, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

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

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

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

.btn-silver {
  background: var(--silver);
  color: var(--black);
}

.btn-silver:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 0.95rem;
}

.btn-full {
  width: 100%;
}

/* =============================================
   NAVIGATION
============================================= */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition-mid), padding var(--transition-mid), box-shadow var(--transition-mid);
}

.site-nav.scrolled {
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.65rem 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 32px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}

.nav-logo .brand-main {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 1.6rem;
  color: var(--electric);
  letter-spacing: 0.05em;
}

.nav-logo .brand-sub {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-top: -0.1rem;
}

.nav-location-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(30, 111, 255, 0.1);
  border: 1px solid rgba(30, 111, 255, 0.25);
  border-radius: 100px;
  padding: 0.3rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--electric);
  flex-shrink: 0;
}

.nav-location-badge svg {
  width: 10px;
  height: 10px;
  fill: var(--electric);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver-dim);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--electric);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
  transform-origin: left;
}

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

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

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

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

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

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--navy);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem;
}

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

.mobile-menu a {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
}

.mobile-menu a:hover {
  color: var(--electric);
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--silver-dim);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.mobile-menu-close:hover {
  color: var(--white);
}

/* =============================================
   HERO
============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}

/* Diagonal stripe animation */
.hero-stripes {
  position: absolute;
  inset: -50%;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(30, 111, 255, var(--stripe-opacity)) 60px,
    rgba(30, 111, 255, var(--stripe-opacity)) 61px
  );
  animation: stripeMove 25s linear infinite;
  will-change: transform;
}

@keyframes stripeMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(80px, 80px); }
}

/* Radial depth gradient */
.hero-depth {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(10, 15, 30, 0.3) 0%, rgba(8, 8, 8, 0.85) 100%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(30, 111, 255, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 30% 30% at 80% 20%, rgba(30, 111, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Floating geometric shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border: 1px solid rgba(30, 111, 255, 0.15);
  border-radius: 4px;
  animation: shapeDrift linear infinite;
  opacity: 0;
}

.shape-1 {
  width: 60px; height: 60px;
  top: 15%; left: 8%;
  animation-duration: 18s;
  animation-delay: 0s;
  transform: rotate(15deg);
}

.shape-2 {
  width: 40px; height: 40px;
  top: 25%; right: 12%;
  animation-duration: 22s;
  animation-delay: -5s;
  border-radius: 50%;
  border-color: rgba(30, 111, 255, 0.12);
}

.shape-3 {
  width: 80px; height: 80px;
  bottom: 30%; left: 15%;
  animation-duration: 26s;
  animation-delay: -10s;
  transform: rotate(-20deg);
  border-color: rgba(30, 111, 255, 0.1);
}

.shape-4 {
  width: 30px; height: 30px;
  top: 60%; right: 20%;
  animation-duration: 16s;
  animation-delay: -3s;
  border-radius: 50%;
}

.shape-5 {
  width: 50px; height: 50px;
  top: 10%; left: 40%;
  animation-duration: 20s;
  animation-delay: -8s;
  transform: rotate(45deg);
  border-color: rgba(30, 111, 255, 0.08);
}

.shape-6 {
  width: 70px; height: 3px;
  bottom: 20%; right: 10%;
  animation-duration: 24s;
  animation-delay: -12s;
  border-radius: 2px;
  background: rgba(30, 111, 255, 0.1);
  border: none;
}

@keyframes shapeDrift {
  0% {
    opacity: 0;
    transform: translateY(20px) rotate(0deg);
  }
  10% {
    opacity: 1;
  }
  50% {
    transform: translateY(-15px) rotate(180deg);
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(20px) rotate(360deg);
  }
}

/* Barber Pole */
.barber-pole-wrap {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 280px;
  perspective: 400px;
  opacity: 0.6;
  z-index: 1;
}

.barber-pole {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow:
    4px 0 12px rgba(0, 0, 0, 0.5),
    -2px 0 6px rgba(255, 255, 255, 0.05),
    inset -8px 0 16px rgba(0, 0, 0, 0.3),
    inset 4px 0 8px rgba(255, 255, 255, 0.08);
}

.barber-pole-stripes {
  position: absolute;
  inset: -100%;
  background: repeating-linear-gradient(
    -60deg,
    #cc1122 0px,
    #cc1122 12px,
    #f8f9ff 12px,
    #f8f9ff 24px,
    #1e6fff 24px,
    #1e6fff 36px,
    #f8f9ff 36px,
    #f8f9ff 48px
  );
  animation: poleRotate 3s linear infinite;
  will-change: transform;
}

@keyframes poleRotate {
  0% { transform: translateY(0); }
  100% { transform: translateY(96px); }
}

.barber-pole-cap {
  position: absolute;
  left: 0; right: 0;
  height: 18px;
  background: linear-gradient(135deg, #e8e8e8, #a0a0a0);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.barber-pole-cap-top { top: -2px; }
.barber-pole-cap-bottom { bottom: -2px; }

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 1000px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(30, 111, 255, 0.12);
  border: 1px solid rgba(30, 111, 255, 0.3);
  border-radius: 100px;
  padding: 0.45rem 1.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease both;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--electric);
  box-shadow: 0 0 8px var(--electric);
  animation: pulse 2s ease infinite;
}

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

.hero-title {
  font-family: 'Black Han Sans', sans-serif;
  font-size: clamp(5rem, 18vw, 18rem);
  line-height: 0.85;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0;
  animation: fadeInUp 0.9s ease 0.1s both;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2.5vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.9s ease 0.2s both;
}

.hero-tagline {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--silver-dim);
  margin-bottom: 2.5rem;
  font-weight: 400;
  animation: fadeInUp 0.9s ease 0.3s both;
}

.hero-tagline strong {
  color: var(--silver);
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeInUp 0.9s ease 0.4s both;
}

/* Review badge */
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.5rem;
  animation: fadeInUp 0.9s ease 0.5s both;
  backdrop-filter: blur(8px);
}

.review-badge-stars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-badge-rating {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 1.6rem;
  color: var(--white);
  line-height: 1;
}

.stars {
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.review-badge-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.15);
}

.review-badge-count {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.review-count-number {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 1.1rem;
  color: var(--electric);
  line-height: 1;
}

.review-count-label {
  font-size: 0.65rem;
  color: var(--silver-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Highpoint badge */
.highpoint-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(30, 111, 255, 0.08);
  border: 1px solid rgba(30, 111, 255, 0.2);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-top: 1.5rem;
  animation: fadeInUp 0.9s ease 0.6s both;
}

.highpoint-badge svg {
  width: 12px;
  height: 12px;
  fill: var(--electric);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: fadeIn 1s ease 1.5s both;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-dim);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--electric), transparent);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =============================================
   SECTION WRAPPERS
============================================= */
section {
  padding: 6rem 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  margin-bottom: 4rem;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-subtitle {
  margin: 0 auto;
}

/* =============================================
   DIVIDER STRIPE
============================================= */
.stripe-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--electric), rgba(30, 111, 255, 0.3));
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.stripe-divider.centered {
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   STATS BAR
============================================= */
.stats-bar {
  background: var(--grey-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-number {
  font-family: 'Black Han Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--electric);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver-dim);
}

/* =============================================
   SERVICES SECTION / CARDS
============================================= */
.services-bg {
  background: var(--navy);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-mid);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  background: linear-gradient(135deg, rgba(30,111,255,0.5), transparent 60%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-mid);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(30, 111, 255, 0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-mid);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow), var(--shadow-card-hover);
  border-color: rgba(30, 111, 255, 0.3);
  background: rgba(30, 111, 255, 0.04);
}

.service-card:hover::before,
.service-card:hover::after {
  opacity: 1;
}

.service-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(30, 111, 255, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
  transition: all var(--transition-mid);
}

.service-card:hover .service-card-icon {
  background: rgba(30, 111, 255, 0.2);
  box-shadow: 0 0 20px rgba(30, 111, 255, 0.3);
}

.service-card-name {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.service-card-desc {
  font-size: 0.85rem;
  color: var(--silver-dim);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 1.25rem;
  margin-top: auto;
}

.service-price {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 1.5rem;
  color: var(--electric);
  line-height: 1;
}

.service-duration {
  font-size: 0.72rem;
  color: var(--silver-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* =============================================
   FEATURED SERVICE (FULL-WIDTH PROMO)
============================================= */
.promo-banner {
  background: linear-gradient(135deg, rgba(30, 111, 255, 0.12) 0%, rgba(30, 111, 255, 0.04) 100%);
  border: 1px solid rgba(30, 111, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30, 111, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.promo-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 0.75rem;
}

.promo-title {
  font-family: 'Black Han Sans', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.promo-desc {
  font-size: 0.9rem;
  color: var(--silver-dim);
  max-width: 400px;
}

.promo-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  flex-shrink: 0;
}

.promo-price {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 3rem;
  color: var(--electric);
  line-height: 1;
}

/* =============================================
   WHY CHOOSE US
============================================= */
.why-section {
  background: var(--black);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.why-feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(30, 111, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all var(--transition-mid);
}

.why-feature:hover .why-feature-icon {
  background: rgba(30, 111, 255, 0.2);
  box-shadow: 0 0 16px rgba(30, 111, 255, 0.3);
  transform: scale(1.05);
}

.why-feature-content h4 {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.why-feature-content p {
  font-size: 0.88rem;
  color: var(--silver-dim);
  line-height: 1.6;
}

.why-visual {
  position: relative;
}

.review-showcase {
  background: var(--grey-dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

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

.review-big-number {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 5rem;
  color: var(--electric);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.review-big-stars {
  color: #fbbf24;
  font-size: 1.4rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.review-big-label {
  font-size: 0.8rem;
  color: var(--silver-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.review-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-mini-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
}

.review-mini-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.review-mini-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--white);
}

.review-mini-stars {
  color: #fbbf24;
  font-size: 0.75rem;
}

.review-mini-text {
  font-size: 0.8rem;
  color: var(--silver-dim);
  line-height: 1.5;
}

/* =============================================
   ABOUT PREVIEW
============================================= */
.about-preview {
  background: var(--navy);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual-box {
  background: var(--grey-dark);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(30, 111, 255, 0.03) 20px,
    rgba(30, 111, 255, 0.03) 21px
  );
}

.about-visual-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
}

.about-visual-icon {
  font-size: 5rem;
  margin-bottom: 1rem;
  display: block;
}

.about-visual-text {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 1.2rem;
  color: var(--electric);
  letter-spacing: 0.1em;
}

.about-tag {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--electric);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.about-tag-number {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1;
}

.about-tag-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-content p {
  font-size: 0.95rem;
  color: var(--silver-dim);
  line-height: 1.8;
}

.about-content p strong {
  color: var(--white);
}

/* =============================================
   CTA STRIP
============================================= */
.cta-strip {
  background: linear-gradient(135deg, var(--electric) 0%, #0c3db0 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 30px,
    rgba(255, 255, 255, 0.03) 30px,
    rgba(255, 255, 255, 0.03) 31px
  );
}

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

.cta-strip h2 {
  font-family: 'Black Han Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-strip p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-strip .btn-primary {
  background: var(--white);
  color: var(--electric);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.cta-strip .btn-primary:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.cta-strip .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

/* =============================================
   ABOUT PAGE STYLES
============================================= */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.page-hero-stripes {
  position: absolute;
  inset: -50%;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(30, 111, 255, 0.03) 60px,
    rgba(30, 111, 255, 0.03) 61px
  );
  animation: stripeMove 25s linear infinite;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 2rem;
}

.page-hero h1 {
  font-family: 'Black Han Sans', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--silver-dim);
  max-width: 540px;
  margin: 0 auto;
}

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

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.story-aside {
  position: sticky;
  top: 100px;
}

.story-stat-box {
  background: var(--grey-dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.story-stat-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--electric);
}

.story-stat-number {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 3.5rem;
  color: var(--electric);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.story-stat-label {
  font-size: 0.8rem;
  color: var(--silver-dim);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.story-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.story-content p {
  font-size: 1rem;
  color: var(--silver-dim);
  line-height: 1.85;
}

.story-content p strong {
  color: var(--white);
}

.story-content h3 {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-top: 1rem;
}

.values-section {
  background: var(--navy);
}

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

.value-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition-mid);
}

.value-card:hover {
  border-color: rgba(30, 111, 255, 0.3);
  transform: translateY(-4px);
  background: rgba(30, 111, 255, 0.04);
}

.value-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: block;
}

.value-card h3 {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--silver-dim);
  line-height: 1.65;
}

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

/* =============================================
   SERVICES PAGE STYLES
============================================= */
.services-list-section {
  background: var(--black);
}

.services-category {
  margin-bottom: 4rem;
}

.services-category:last-child {
  margin-bottom: 0;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.category-icon {
  font-size: 1.5rem;
}

.category-title {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 1.5rem;
  color: var(--white);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  transition: all var(--transition-mid);
  gap: 2rem;
}

.service-row:hover {
  border-color: rgba(30, 111, 255, 0.3);
  background: rgba(30, 111, 255, 0.04);
  transform: translateX(4px);
  box-shadow: var(--shadow-glow);
}

.service-row-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
}

.service-row-icon {
  width: 40px;
  height: 40px;
  background: rgba(30, 111, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.service-row-info h3 {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.service-row-info p {
  font-size: 0.8rem;
  color: var(--silver-dim);
}

.service-row-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}

.service-row-price {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 1.5rem;
  color: var(--electric);
  min-width: 60px;
  text-align: right;
}

.service-row-duration {
  font-size: 0.72rem;
  color: var(--silver-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  min-width: 70px;
  text-align: right;
}

/* =============================================
   CONTACT PAGE STYLES
============================================= */
.contact-section {
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(30, 111, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 0.35rem;
}

.contact-info-text p,
.contact-info-text a {
  font-size: 0.95rem;
  color: var(--silver);
  line-height: 1.6;
  transition: color var(--transition-fast);
}

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

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

.hours-table tr td {
  padding: 0.45rem 0;
  font-size: 0.88rem;
  color: var(--silver-dim);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--white);
  width: 50%;
}

.hours-table tr.today td {
  color: var(--electric);
}

.hours-table tr.today td:first-child {
  color: var(--electric);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--grey-dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--electric), rgba(30, 111, 255, 0.3));
}

.form-title {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 0.88rem;
  color: var(--silver-dim);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c0c0c0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option {
  background: var(--grey-dark);
  color: var(--white);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--electric);
  box-shadow: 0 0 0 3px rgba(30, 111, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--silver-dim);
}

/* Map */
.map-section {
  background: var(--navy);
  padding: 0 0 4rem;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  filter: grayscale(0.3) invert(0.08) hue-rotate(190deg);
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand .nav-logo {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
}

.footer-brand .nav-logo .brand-main {
  font-size: 1.8rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--silver-dim);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--silver-dim);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: rgba(30, 111, 255, 0.12);
  border-color: rgba(30, 111, 255, 0.3);
  color: var(--white);
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--silver-dim);
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--electric);
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--silver-dim);
}

.footer-hours-row .day {
  color: var(--silver);
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--silver-dim);
}

.footer-powered {
  font-size: 0.72rem;
  color: var(--silver-dim);
  opacity: 0.7;
}

.footer-powered a {
  color: var(--electric);
  font-weight: 600;
}

/* =============================================
   SCROLL ANIMATIONS
============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

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

/* Hero fade animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

/* =============================================
   RESPONSIVE BREAKPOINTS
============================================= */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

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

@media (max-width: 900px) {
  .nav-links,
  .nav-location-badge {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

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

  .why-grid,
  .about-grid,
  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story-aside {
    position: static;
  }

  .story-stat-box {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .story-stat-number {
    font-size: 2.5rem;
  }

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

  .promo-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .promo-right {
    align-items: flex-start;
  }

  .barber-pole-wrap {
    opacity: 0.25;
    right: 2%;
  }
}

@media (max-width: 640px) {
  section {
    padding: 4rem 0;
  }

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

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

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

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

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

  .hero-ctas .btn {
    width: 100%;
    max-width: 320px;
  }

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

  .service-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-row-right {
    justify-content: space-between;
    width: 100%;
  }

  .contact-form-wrap {
    padding: 2rem 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .barber-pole-wrap {
    display: none;
  }

  .review-badge {
    flex-direction: column;
    gap: 0.5rem;
  }

  .review-badge-divider {
    width: 60px;
    height: 1px;
  }
}

/* =============================================
   UTILITY
============================================= */
.text-electric { color: var(--electric); }
.text-silver { color: var(--silver); }
.text-dim { color: var(--silver-dim); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.flex { display: flex; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
