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

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

:root {
  --bg-primary: #0b0d0f;
  --bg-card: #121417;
  --text-primary: #ebedef;
  --text-foreground: #f1f2f4;
  --text-muted: #6c737a;
  --text-muted-foreground: rgba(235, 237, 239, 0.6);
  --border-color: #26292c;
  --border-subtle: rgba(38, 41, 44, 0.5);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 6px;
  --radius-lg: 8px;
  --max-width: 1400px;
  --section-padding: 80px 0;
  --section-padding-md: 112px 0;
  --transition: 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color var(--transition), opacity var(--transition); }
a:hover { opacity: 0.8; }

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

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }

/* ===== HEADER / NAV ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11, 13, 15, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(38, 41, 44, 0.5);
  transition: background var(--transition);
}

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

.logo {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 3px;
  color: var(--text-primary);
  font-weight: 400;
}

nav { display: flex; align-items: center; gap: 32px; }

nav a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.35px;
  text-transform: uppercase;
  transition: color var(--transition);
}
nav a:hover { color: var(--text-primary); opacity: 1; }
nav a.active { color: var(--text-primary); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.phone-link {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; color: var(--text-muted);
}
.phone-link svg { width: 16px; height: 16px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.9px;
  height: 44px;
  padding: 0 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--text-primary);
  color: var(--bg-primary);
}
.btn-primary:hover { background: #d0d2d4; opacity: 1; }

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(235, 237, 239, 0.4);
}
.btn-outline:hover { background: rgba(235, 237, 239, 0.05); opacity: 1; }

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: none;
}

.btn-sm {
  height: 36px;
  padding: 0 12px;
}

.btn-lg {
  height: 48px;
  padding: 0 40px;
  font-size: 20px;
  letter-spacing: 1px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  max-height: 900px;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform, filter;
  animation: heroKenBurns 22s ease-in-out infinite alternate,
             heroFadeIn 1.6s ease-out both;
  filter: brightness(0.85) contrast(1.08) saturate(1.05);
}

@keyframes heroKenBurns {
  0%   { transform: scale(1.06) translate3d(0,0,0); }
  100% { transform: scale(1.14) translate3d(-1.5%, -1%, 0); }
}

@keyframes heroFadeIn {
  from { opacity: 0; filter: brightness(0.4) contrast(1.2) saturate(1.05) blur(8px); }
  to   { opacity: 1; filter: brightness(0.85) contrast(1.08) saturate(1.05) blur(0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(11,13,15,0.55) 0%, rgba(11,13,15,0.35) 45%, rgba(11,13,15,0.92) 100%),
    linear-gradient(to right, rgba(11,13,15,0.35) 0%, rgba(11,13,15,0) 30%, rgba(11,13,15,0) 70%, rgba(11,13,15,0.35) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Cinematic vignette */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
  mix-blend-mode: multiply;
}

/* Film grain — subtle texture that hints at motion */
.hero-grain {
  position: absolute;
  inset: -50%;
  z-index: 3;
  pointer-events: none;
  opacity: 0.08;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.9 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
  mix-blend-mode: overlay;
  animation: heroGrain 1.2s steps(6) infinite;
}

@keyframes heroGrain {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-4%, 3%); }
  40%  { transform: translate(3%, -4%); }
  60%  { transform: translate(-2%, -3%); }
  80%  { transform: translate(4%, 2%); }
  100% { transform: translate(0, 0); }
}

.hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 900px;
  padding: 0 24px 32px;
  text-align: center;
}

.hero-tag {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 6px;
  padding-left: 6px; /* offset trailing letter-spacing for true visual centering */
  color: var(--text-muted-foreground);
  margin: 0 0 20px;
  opacity: 0;
  transform: translateY(14px);
  animation: heroRise 1s cubic-bezier(.2,.7,.2,1) 0.3s forwards;
}

.hero h1 {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 128px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 6.4px;
  padding-left: 6.4px; /* offset trailing letter-spacing for true visual centering */
  margin: 0 0 20px;
  color: var(--text-primary);
  background: linear-gradient(180deg, #ffffff 0%, #ebedef 55%, #8f9498 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
  opacity: 0;
  transform: translateY(24px);
  animation: heroRise 1.2s cubic-bezier(.2,.7,.2,1) 0.55s forwards;
}

/* Accent line beneath the title */
.hero-accent {
  display: block;
  width: 0;
  height: 2px;
  margin: -8px auto 28px;
  background: linear-gradient(to right, transparent, #ebedef 50%, transparent);
  animation: heroAccent 1.1s cubic-bezier(.2,.7,.2,1) 1.1s forwards;
  box-shadow: 0 0 18px rgba(235,237,239,0.35);
}

@keyframes heroAccent { to { width: 180px; } }

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(235, 237, 239, 0.9);
  max-width: 448px;
  margin: 0 auto 40px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(14px);
  animation: heroRise 1s cubic-bezier(.2,.7,.2,1) 1.25s forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(14px);
  animation: heroRise 1s cubic-bezier(.2,.7,.2,1) 1.45s forwards;
}

@keyframes heroRise {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll cue */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(235,237,239,0.55);
  opacity: 0;
  animation: heroRise 1s ease-out 2s forwards;
}
.hero-scroll:hover { color: var(--text-primary); opacity: 1 !important; }

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(235,237,239,0.6), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(to bottom, transparent, #ebedef);
  animation: heroScrollDrop 2.2s ease-in-out infinite;
}

@keyframes heroScrollDrop {
  0%   { top: -20px; opacity: 0; }
  30%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 48px; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg img,
  .hero-grain,
  .hero-scroll-line::after {
    animation: none !important;
  }
  .hero-tag, .hero h1, .hero-subtitle, .hero-buttons, .hero-scroll {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .hero-accent { width: 180px; animation: none; }
}

/* ===== SECTION TITLES ===== */
.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 2.4px;
}

.section-title h2 span {
  color: var(--text-muted-foreground);
}

/* ===== SERVICES CARDS (Homepage) ===== */
/* ===== AWARDS STRIP ===== */
.awards-section {
  padding: 48px 0;
  background: linear-gradient(180deg, #0b0d0f 0%, #0f1114 50%, #0b0d0f 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.awards-section::before,
.awards-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,166,70,0.35) 20%, rgba(201,166,70,0.6) 50%, rgba(201,166,70,0.35) 80%, transparent);
}
.awards-section::before { top: 0; }
.awards-section::after  { bottom: 0; }

.awards-inner {
  text-align: center;
}

.awards-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 4px;
  padding-left: 4px;
  color: #c9a646;
  margin-bottom: 24px;
  text-transform: uppercase;
  position: relative;
}

.awards-eyebrow::before,
.awards-eyebrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 32px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,166,70,0.6));
}
.awards-eyebrow::before { right: 100%; margin-right: 14px; }
.awards-eyebrow::after  { left: 100%; margin-left: 14px; background: linear-gradient(to left, transparent, rgba(201,166,70,0.6)); }

.awards-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.award-card {
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
  max-width: 380px;
  transition: transform var(--transition);
}
.award-card:hover { transform: translateY(-2px); }

.award-badge {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 20px rgba(201,166,70,0.25));
  animation: awardShine 6s ease-in-out infinite;
}
.award-badge svg { width: 100%; height: 100%; }

@keyframes awardShine {
  0%, 100% { filter: drop-shadow(0 4px 20px rgba(201,166,70,0.25)); }
  50%      { filter: drop-shadow(0 4px 28px rgba(201,166,70,0.55)); }
}

.award-text { line-height: 1.3; }

.award-year {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2.5px;
  color: #c9a646;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.award-title {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 1.5px;
  color: var(--text-primary);
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 2px;
}

.award-sub {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted-foreground);
  letter-spacing: 0.3px;
}
.award-sub a {
  color: #c9a646;
  border-bottom: 1px dotted rgba(201,166,70,0.4);
}
.award-sub a:hover { opacity: 1; border-bottom-color: #c9a646; }

.award-divider {
  width: 1px;
  height: 68px;
  background: linear-gradient(to bottom, transparent, rgba(201,166,70,0.4), transparent);
}

@media (max-width: 768px) {
  .awards-grid { gap: 32px; flex-direction: column; }
  .award-divider { width: 68px; height: 1px; background: linear-gradient(to right, transparent, rgba(201,166,70,0.4), transparent); }
  .award-card { max-width: 100%; }
  .award-title { font-size: 18px; }
}

.services-section { padding: var(--section-padding-md); }

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  display: block;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all var(--transition);
  background: transparent;
}
.service-card:hover {
  border-color: var(--text-muted);
  background: rgba(255,255,255,0.02);
  opacity: 1;
  transform: translateY(-2px);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 1.2px;
  margin-bottom: 4px;
}

.service-card .price {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.service-card .desc {
  font-size: 12px;
  color: rgba(108, 115, 122, 0.7);
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-card .card-cta {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-foreground);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card .card-cta::after {
  content: '→';
  transition: transform var(--transition);
}

.service-card:hover .card-cta::after {
  transform: translateX(4px);
}

/* ===== TEAM SECTION ===== */
.team-section {
  padding: var(--section-padding-md);
  background: var(--bg-card);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.team-card { text-align: center; }

.team-card .team-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 24px;
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.team-card .role {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.team-card .bio {
  font-size: 14px;
  color: rgba(235, 237, 239, 0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ===== VIDEO SECTION ===== */
.video-section {
  padding: var(--section-padding-md);
  background-color: var(--bg-primary);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 320px));
  gap: 48px;
  justify-content: center;
  margin-top: 48px;
}

.video-frame {
  position: relative;
  aspect-ratio: 9 / 19.5;
  border-radius: 32px;
  overflow: hidden;
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6), 0 10px 30px -10px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition);
}

.video-frame:hover {
  transform: translateY(-4px);
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: minmax(0, 280px);
    gap: 32px;
  }
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: var(--section-padding-md);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
  margin-bottom: 0;
}

.gallery-grid .gallery-img-wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition), opacity var(--transition);
}
.gallery-grid .gallery-img-wrap:hover img { transform: scale(1.02); opacity: 0.9; }

.gallery-cta { text-align: center; margin-top: 48px; }

/* ===== FIND US ===== */
.find-section {
  padding: var(--section-padding-md);
  background: var(--bg-card);
}

.find-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}

.find-address {
  margin-bottom: 8px;
}
.find-address .address-line1 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.7;
}
.find-address .address-line2 {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.find-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hours-grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 8px 24px;
  margin-bottom: 16px;
}

.hours-grid .day {
  font-size: 14px;
  color: var(--text-muted);
}
.hours-grid .time {
  font-size: 14px;
  color: var(--text-primary);
}

.walkins {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.find-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.find-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) brightness(0.8) contrast(1.1);
}

/* Contact page map has no filter */
.contact-grid .find-map iframe {
  filter: none;
}

/* ===== REVIEWS ===== */
.reviews-section {
  padding: var(--section-padding-md);
}

.reviews-header {
  text-align: center;
  margin-bottom: 48px;
}

.reviews-header h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 2.4px;
  margin-bottom: 16px;
}

.reviews-header h2 span {
  color: var(--text-muted-foreground);
}

.rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}

.rating-number {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}

.stars {
  display: flex;
  gap: 2px;
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: #fbbf24;
  color: #fbbf24;
}

.review-count {
  font-size: 14px;
  color: var(--text-muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.review-card {
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.review-card .reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.reviewer-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-foreground);
}

.reviewer-name {
  font-size: 14px;
  font-weight: 500;
}

.review-text {
  font-size: 13px;
  color: rgba(235, 237, 239, 0.6);
  line-height: 1.7;
}

.reviews-actions {
  text-align: center;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: 48px;
  margin-bottom: 16px;
  letter-spacing: 2.4px;
}

.cta-section p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 32px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo { margin-bottom: 16px; display: block; }

.footer-brand p {
  font-size: 14px;
  color: rgba(235, 237, 239, 0.6);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 320px;
}

.footer-brand .instagram-note {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.footer-brand .instagram-link {
  font-size: 14px;
  color: var(--text-primary);
}

footer h4 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.9px;
  margin-bottom: 16px;
}

.footer-contact p, .footer-contact a {
  font-size: 14px;
  color: rgba(235, 237, 239, 0.6);
  line-height: 1.8;
  display: block;
}
.footer-contact a:hover { color: var(--text-primary); opacity: 1; }

.footer-hours p {
  font-size: 14px;
  color: rgba(235, 237, 239, 0.6);
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-links a:hover { color: var(--text-primary); }

/* ===== SERVICES PAGE ===== */
.page-header {
  padding: 196px 0 48px;
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: 60px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.page-header h1 span {
  color: var(--text-foreground);
}

.page-header p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* Barber filter tabs */
.barber-filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 9999px;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--text-foreground);
  color: var(--bg-primary);
  border-color: var(--text-foreground);
}

/* Services list */
.services-category {
  margin-bottom: 48px;
}

.services-category h2 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
}

.service-details { flex: 1; }

.service-name {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.service-name h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.9px;
}

.popular-badge {
  font-size: 10px;
  font-weight: 400;
  background: var(--text-foreground);
  color: var(--bg-primary);
  padding: 2px 8px;
  border-radius: 9999px;
  letter-spacing: 0.5px;
}

.service-desc {
  font-size: 12px;
  color: var(--text-muted);
}

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

.service-price {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.5px;
  color: var(--text-foreground);
}

.service-duration {
  font-size: 12px;
  color: var(--text-muted);
}

/* Cancellation policy */
.cancel-policy {
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 64px;
}

.cancel-policy h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.cancel-policy p {
  font-size: 14px;
  color: rgba(235, 237, 239, 0.6);
  line-height: 1.7;
}

/* ===== TEAM PAGE ===== */
.team-page-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding-bottom: 80px;
}

.team-member {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.team-member:nth-child(even) { direction: rtl; }
.team-member:nth-child(even) > * { direction: ltr; }

.team-member-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 8px;
}

.team-member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-info h2 {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 1.8px;
  margin-bottom: 4px;
}

.team-member-info .role {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.team-member-info .bio {
  font-size: 16px;
  color: var(--text-foreground);
  line-height: 1.5;
  margin-bottom: 24px;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.team-tag {
  font-size: 12px;
  padding: 4px 14px;
  border-radius: 9999px;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
}

.team-instagram {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  display: inline-block;
}

.btn-team {
  height: 40px;
  padding: 8px 16px;
}

/* ===== GALLERY PAGE ===== */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-bottom: 16px;
}

.gallery-page-grid .gallery-img-wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.gallery-page-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition), opacity var(--transition);
}
.gallery-page-grid .gallery-img-wrap:hover img { transform: scale(1.02); opacity: 0.9; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.active { display: flex; }

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

.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 32px;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: background var(--transition);
}
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-bottom: 80px;
}

.contact-details p {
  font-size: 15px;
  color: rgba(235, 237, 239, 0.6);
  line-height: 1.7;
  margin-bottom: 8px;
}

.contact-details .location-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 1.2px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 8px 12px;
  height: 40px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color var(--transition);
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--text-muted);
}

/* ===== BOOK PAGE ===== */
.book-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 196px 32px 80px;
}

.book-page p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ===== POLICIES PAGE ===== */
.policies-content {
  max-width: 700px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.policy-block {
  margin-bottom: 40px;
}

.policy-block h2 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.policy-block p {
  font-size: 15px;
  color: rgba(235, 237, 239, 0.6);
  line-height: 1.8;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 769px) {
  .services-section,
  .team-section,
  .video-section,
  .gallery-section,
  .find-section,
  .reviews-section {
    padding: var(--section-padding-md);
  }
}

@media (max-width: 1024px) {
  .team-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-member { grid-template-columns: 1fr; gap: 32px; }
  .team-member:nth-child(even) { direction: ltr; }
}

@media (max-width: 768px) {
  nav { display: none; }
  .menu-toggle { display: flex; }

  nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px; left: 0; right: 0; bottom: 0;
    background: var(--bg-primary);
    padding: 40px 24px;
    gap: 24px;
    z-index: 99;
  }
  nav.open a {
    font-size: 24px;
    font-family: var(--font-display);
    letter-spacing: 2px;
    color: var(--text-primary);
  }

  .hero h1 { font-size: 56px; letter-spacing: 3px; }
  .hero-tag { font-size: 16px; letter-spacing: 4px; }

  .service-cards { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid, .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .find-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .header-actions .phone-link { display: none; }

  .service-item { flex-direction: column; align-items: flex-start; gap: 8px; }
  .service-meta { text-align: left; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 44px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .gallery-grid, .gallery-page-grid { grid-template-columns: 1fr; }
}
