/* ============================================
   CJ CLIPPER BARBER SHOP — Premium Dark Design
   ui-ux-pro-max: Playfair Display / Inter
   Palette: Barbershop Black + Gold
   ============================================ */

:root {
  /* Colors — Dark Barbershop Luxury */
  --black: #0A0A0A;
  --black-rich: #111111;
  --black-card: #161616;
  --black-elevated: #1C1C1C;
  --gold: #C9A84C;
  --gold-light: #E8D48B;
  --gold-dark: #8B6914;
  --gold-glow: rgba(201, 168, 76, 0.25);
  --gold-subtle: rgba(201, 168, 76, 0.08);
  --white: #F5F0E8;
  --white-pure: #FFFFFF;
  --gray: #888880;
  --gray-dim: #555550;
  --red-pole: #CC2936;
  --blue-pole: #2563EB;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Type Scale */
  --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;
  --text-8xl: 6rem;
  --text-9xl: 8rem;

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

  /* Effects */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --duration-slow: 400ms;
  --shadow-gold: 0 0 40px var(--gold-glow);
  --shadow-card: 0 4px 30px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 50px rgba(0,0,0,0.5);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Z-index */
  --z-base: 0;
  --z-above: 10;
  --z-sticky: 20;
  --z-nav: 40;
  --z-modal: 100;
  --z-preloader: 1000;
}

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

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* --- Container --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-6); }
@media (min-width: 768px) { .container { padding: 0 var(--space-8); } }

/* --- Preloader --- */
.preloader {
  position: fixed; inset: 0; z-index: var(--z-preloader);
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-scissors {
  animation: scissorSnip 1.2s ease-in-out infinite;
}
@keyframes scissorSnip {
  0%, 100% { transform: rotate(0deg); }
  30% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
  70% { transform: rotate(-3deg); }
}
.preloader-text {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-top: var(--space-4);
}

/* --- Navigation --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  padding: var(--space-4) 0;
  transition: all var(--duration-normal) var(--ease-out);
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  padding: var(--space-3) 0;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 var(--space-6);
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.logo-cj {
  font-family: var(--font-display);
  font-size: var(--text-2xl); font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.logo-clipper {
  font-family: var(--font-body);
  font-size: var(--text-xs); font-weight: 300;
  letter-spacing: 0.4em; color: var(--gray);
}

.nav-menu { display: none; gap: var(--space-6); align-items: center; }
@media (min-width: 768px) { .nav-menu { display: flex; } }
.nav-link {
  font-size: var(--text-sm); font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--gray); padding: var(--space-2) 0;
  position: relative;
  transition: color var(--duration-fast);
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width var(--duration-normal) var(--ease-out);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm); font-weight: 600;
  color: var(--black); background: var(--gold);
  border-radius: var(--radius-full);
  transition: all var(--duration-fast);
  min-height: 44px;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Mobile toggle */
.nav-toggle {
  display: flex; flex-direction: column; gap: 5px;
  padding: var(--space-2); z-index: 50;
}
@media (min-width: 768px) { .nav-toggle { display: none; } }
.nav-toggle span {
  width: 24px; height: 2px; background: var(--gold);
  transition: all var(--duration-normal) var(--ease-out);
}
.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); }
.nav-menu.open {
  display: flex; flex-direction: column;
  position: fixed; inset: 0;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(30px);
  align-items: center; justify-content: center;
  gap: var(--space-8); z-index: 45;
}
.nav-menu.open .nav-link { font-size: var(--text-2xl); color: var(--white); }

/* ============================
   HERO SECTION
   ============================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: var(--space-20) var(--space-6);
}

/* Hero backgrounds */
.hero-bg { position: absolute; inset: 0; }
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  z-index: 1;
}
.hero-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse 50% 80% at 20% 80%, rgba(201, 168, 76, 0.04) 0%, transparent 50%),
              linear-gradient(180deg, var(--black) 0%, #0d0c08 50%, var(--black) 100%);
  z-index: 2;
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, transparent 40%, rgba(0,0,0,0.6) 100%);
  z-index: 3;
}

/* Floating scissors */
.floating-elements { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.float-scissors { position: absolute; }
.float-1 { top: 15%; left: 8%; animation: floatSlow 18s ease-in-out infinite; }
.float-2 { top: 60%; right: 10%; animation: floatSlow 22s ease-in-out infinite reverse; animation-delay: -5s; }
.float-3 { bottom: 15%; left: 25%; animation: floatSlow 25s ease-in-out infinite; animation-delay: -10s; }
@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(15px, -25px) rotate(8deg); }
  50% { transform: translate(-10px, -40px) rotate(-5deg); }
  75% { transform: translate(20px, -15px) rotate(3deg); }
}

/* Gold light streaks */
.light-streak {
  position: absolute; z-index: 2;
  width: 1px; opacity: 0;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  animation: streakFall 6s ease-in-out infinite;
}
.streak-1 { left: 20%; height: 120px; animation-delay: 0s; }
.streak-2 { left: 55%; height: 80px; animation-delay: 2s; }
.streak-3 { right: 25%; height: 100px; animation-delay: 4s; }
@keyframes streakFall {
  0% { top: -10%; opacity: 0; }
  10% { opacity: 0.3; }
  50% { opacity: 0.15; }
  90% { opacity: 0; }
  100% { top: 100%; opacity: 0; }
}

/* Hero content */
.hero-content {
  position: relative; z-index: var(--z-above);
  text-align: center; max-width: 700px;
}

/* Animated scissors centerpiece */
.hero-scissors-wrap { margin-bottom: var(--space-6); }
.hero-scissors .blade-left {
  transform-origin: 110px 95px;
  animation: bladeSnipLeft 3s ease-in-out infinite;
}
.hero-scissors .blade-right {
  transform-origin: 110px 95px;
  animation: bladeSnipRight 3s ease-in-out infinite;
}
@keyframes bladeSnipLeft {
  0%, 100% { transform: rotate(0deg); }
  15% { transform: rotate(12deg); }
  30% { transform: rotate(0deg); }
  45% { transform: rotate(8deg); }
  60% { transform: rotate(0deg); }
}
@keyframes bladeSnipRight {
  0%, 100% { transform: rotate(0deg); }
  15% { transform: rotate(-12deg); }
  30% { transform: rotate(0deg); }
  45% { transform: rotate(-8deg); }
  60% { transform: rotate(0deg); }
}

/* Decorative dividers */
.hero-divider {
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-3); margin: var(--space-4) auto;
  max-width: 200px;
}
.hero-divider.small { max-width: 140px; margin: var(--space-6) auto; }
.divider-line { flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); }
.divider-diamond {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: var(--space-3);
  font-size: var(--text-sm); font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--space-6);
}
.badge-line { width: 24px; height: 1px; background: var(--gold); opacity: 0.5; }

.hero-title { font-family: var(--font-display); line-height: 1; margin-bottom: var(--space-4); }
.title-top {
  display: block;
  font-size: var(--text-3xl); font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.1em;
}
.title-main {
  display: block;
  font-size: var(--text-7xl); font-weight: 900;
  color: var(--white-pure);
  letter-spacing: -0.02em;
  text-shadow: 0 0 80px var(--gold-glow);
}
@media (min-width: 768px) {
  .title-top { font-size: var(--text-4xl); }
  .title-main { font-size: var(--text-9xl); }
}

.hero-subtitle {
  font-size: var(--text-xl); color: var(--gray);
  margin-bottom: var(--space-1);
}
.hero-subtitle strong { color: var(--white); font-weight: 600; }

.hero-tagline {
  font-family: var(--font-display);
  font-size: var(--text-lg); font-style: italic;
  color: var(--gold); letter-spacing: 0.05em;
  margin-bottom: var(--space-2);
}

/* Hero CTAs */
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: var(--space-4);
  justify-content: center;
  margin-bottom: var(--space-4);
}
.hero-appt-note {
  font-size: var(--text-sm); color: var(--gray-dim);
  letter-spacing: 0.05em;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: var(--space-8);
  left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: var(--space-2);
  color: var(--gray-dim); font-size: var(--text-xs);
  letter-spacing: 0.2em; text-transform: uppercase;
  z-index: var(--z-above);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.2); }
}

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm); font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--duration-normal) var(--ease-out);
  cursor: pointer; min-height: 48px;
}
.btn-lg { padding: var(--space-4) var(--space-8); font-size: var(--text-base); }

.btn-gold {
  background: var(--gold); color: var(--black);
  box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 35px var(--gold-glow);
  transform: translateY(-2px);
}
.btn-gold:active { transform: translateY(0) scale(0.98); }

.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(201, 168, 76, 0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: var(--gold-subtle);
  transform: translateY(-2px);
}

/* --- Section Defaults --- */
.section { padding: var(--space-20) 0; }
@media (min-width: 768px) { .section { padding: var(--space-24) 0; } }

.section-header { text-align: center; max-width: 600px; margin: 0 auto var(--space-12); }
.section-tag {
  display: inline-block;
  font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--space-3);
}
.section-tag.light { color: var(--gold-light); }
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl); font-weight: 700;
  line-height: 1.15; color: var(--white);
  margin-bottom: var(--space-4);
}
.section-title.light { color: var(--white-pure); }
.section-title em { font-style: italic; color: var(--gold); }
@media (min-width: 768px) { .section-title { font-size: var(--text-5xl); } }
.section-desc { font-size: var(--text-lg); color: var(--gray); line-height: 1.7; }

/* ============================
   ABOUT SECTION
   ============================ */
.about { background: var(--black-rich); }
.about-grid {
  display: grid; grid-template-columns: 1fr;
  gap: var(--space-12); align-items: center;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: auto 1fr; gap: var(--space-16); }
}

.about-image {
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-8); position: relative;
}
.barber-pole-wrap { position: relative; }
.pole-stripes {
  animation: poleRotate 3s linear infinite;
}
@keyframes poleRotate {
  0% { transform: translateY(0); }
  100% { transform: translateY(-96px); }
}

.years-badge {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  width: 100px; height: 100px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.years-number {
  font-family: var(--font-display);
  font-size: var(--text-4xl); font-weight: 900;
  color: var(--gold); line-height: 1;
}
.years-text {
  font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-light);
}

.about-content p {
  font-size: var(--text-base); color: var(--gray);
  line-height: 1.8; margin-bottom: var(--space-4);
  max-width: 560px;
}

.about-stats {
  display: flex; align-items: center; gap: var(--space-6);
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}
.stat { text-align: center; }
.stat-number {
  display: block; font-family: var(--font-display);
  font-size: var(--text-4xl); font-weight: 900;
  color: var(--gold); line-height: 1;
}
.stat-label {
  font-size: var(--text-xs); font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray-dim); margin-top: var(--space-1);
  display: block;
}
.stat-divider { width: 1px; height: 40px; background: rgba(201, 168, 76, 0.2); }

/* ============================
   EXPERIENCE / TIMELINE
   ============================ */
.experience {
  position: relative;
  background: var(--black);
  overflow: hidden;
}
.experience-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, var(--gold-subtle), transparent);
}

.timeline {
  max-width: 700px; margin: 0 auto;
  position: relative; padding-left: var(--space-10);
}
.timeline::before {
  content: ''; position: absolute;
  left: 16px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), var(--gold), transparent);
}
.timeline-item {
  position: relative; padding-bottom: var(--space-10);
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker {
  position: absolute;
  left: calc(-1 * var(--space-10) + 10px);
  top: 8px; width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px var(--gold-glow);
  z-index: 2;
}
.timeline-marker::before {
  content: ''; position: absolute;
  inset: -4px; border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0.3;
}
.timeline-card {
  background: var(--black-card);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  transition: all var(--duration-normal) var(--ease-out);
}
.timeline-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: var(--shadow-gold);
  transform: translateX(4px);
}
.timeline-era {
  font-family: var(--font-display);
  font-size: var(--text-2xl); font-weight: 700;
  color: var(--gold); display: block;
  margin-bottom: var(--space-1);
}
.timeline-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl); font-weight: 600;
  color: var(--white); margin-bottom: var(--space-2);
}
.timeline-card p {
  font-size: var(--text-sm); color: var(--gray);
  line-height: 1.7;
}

/* ============================
   SERVICES
   ============================ */
.services { background: var(--black-rich); }
.services-grid {
  display: grid; grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

.service-card {
  background: var(--black-card);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, var(--gold-subtle));
  opacity: 0; transition: opacity var(--duration-normal);
}
.service-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 48px; height: 48px;
  color: var(--gold); margin-bottom: var(--space-4);
  transition: transform var(--duration-normal) var(--ease-spring);
  position: relative;
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl); font-weight: 600;
  color: var(--white); margin-bottom: var(--space-2);
  position: relative;
}
.service-card p {
  font-size: var(--text-sm); color: var(--gray);
  line-height: 1.7; position: relative;
}

/* Stagger animation delays */
.service-card[style*="--delay:1"] { transition-delay: 80ms; }
.service-card[style*="--delay:2"] { transition-delay: 160ms; }
.service-card[style*="--delay:3"] { transition-delay: 240ms; }

/* ============================
   BOOK CTA
   ============================ */
.book-cta {
  position: relative;
  background: var(--black);
  text-align: center;
  overflow: hidden;
  padding: var(--space-24) 0;
}
.book-bg { position: absolute; inset: 0; pointer-events: none; }
.book-orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px);
}
.book-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  top: -30%; left: -10%;
}
.book-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.1), transparent 70%);
  bottom: -30%; right: -10%;
}

.book-content { position: relative; max-width: 600px; margin: 0 auto; }
.book-scissors {
  margin-bottom: var(--space-6);
  animation: bookSnip 4s ease-in-out infinite;
}
@keyframes bookSnip {
  0%, 100% { transform: rotate(0deg); }
  20% { transform: rotate(-3deg); }
  40% { transform: rotate(3deg); }
  60% { transform: rotate(0deg); }
}

.book-desc {
  font-size: var(--text-lg); color: var(--gray);
  line-height: 1.7; margin: var(--space-4) auto var(--space-8);
  max-width: 480px;
}
.book-phone {
  font-family: var(--font-display);
  font-size: var(--text-5xl); font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-8);
  text-shadow: 0 0 40px var(--gold-glow);
}
@media (min-width: 768px) { .book-phone { font-size: var(--text-6xl); } }
.book-actions {
  display: flex; flex-wrap: wrap; gap: var(--space-4);
  justify-content: center; margin-bottom: var(--space-6);
}
.book-note {
  font-size: var(--text-sm); color: var(--gray-dim);
  font-style: italic;
}

/* ============================
   LOCATION
   ============================ */
.location { background: var(--black-rich); }
.location-grid {
  display: grid; grid-template-columns: 1fr;
  gap: var(--space-8);
}
@media (min-width: 768px) {
  .location-grid { grid-template-columns: 1fr 1.5fr; }
}

.location-info { display: flex; flex-direction: column; gap: var(--space-4); }
.info-card {
  display: flex; gap: var(--space-4); align-items: flex-start;
  background: var(--black-card);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  transition: all var(--duration-normal);
}
.info-card:hover { border-color: rgba(201, 168, 76, 0.25); }
.info-card svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.info-card h4 {
  font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--space-1);
}
.info-card p { font-size: var(--text-base); color: var(--gray); line-height: 1.6; }
.info-card a { color: var(--white); transition: color var(--duration-fast); }
.info-card a:hover { color: var(--gold); }
.info-sub { font-size: var(--text-sm) !important; margin-top: var(--space-1); }
.info-sub a { color: var(--gold) !important; }

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden; min-height: 350px;
  border: 1px solid rgba(201, 168, 76, 0.12);
}
.location-map iframe { display: block; }

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: var(--space-12) 0 var(--space-6);
}
.footer-inner {
  display: grid; grid-template-columns: 1fr;
  gap: var(--space-8);
}
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; align-items: start; }
}
.footer-logo {
  display: flex; flex-direction: column; line-height: 1;
  margin-bottom: var(--space-3);
}
.footer-brand p {
  font-size: var(--text-sm); color: var(--gray-dim);
  line-height: 1.7; max-width: 280px;
}
.footer-contact-col h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm); font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--space-3);
}
.footer-contact-col p {
  font-size: var(--text-sm); color: var(--gray-dim);
  margin-bottom: var(--space-2);
}
.footer-contact-col a { color: var(--gray); transition: color var(--duration-fast); }
.footer-contact-col a:hover { color: var(--gold); }

.footer-cta-col { display: flex; align-items: flex-start; }
@media (min-width: 768px) { .footer-cta-col { justify-content: flex-end; } }

.footer-bottom {
  margin-top: var(--space-8); padding-top: var(--space-4);
  border-top: 1px solid rgba(201, 168, 76, 0.06);
  text-align: center;
}
.footer-bottom p { font-size: var(--text-xs); color: var(--gray-dim); }

/* ============================
   FLOATING MOBILE CTA
   ============================ */
.mobile-cta {
  position: fixed; bottom: var(--space-6); right: var(--space-6);
  z-index: var(--z-sticky);
  opacity: 0; transform: translateY(20px);
  transition: all var(--duration-slow) var(--ease-out);
  pointer-events: none;
}
.mobile-cta.visible {
  opacity: 1; transform: translateY(0);
  pointer-events: all;
}
@media (min-width: 768px) { .mobile-cta { display: none; } }

.mobile-cta-btn {
  display: flex; align-items: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: var(--gold); color: var(--black);
  border-radius: var(--radius-full);
  font-size: var(--text-sm); font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  box-shadow: 0 8px 30px var(--gold-glow);
  min-height: 48px;
  transition: all var(--duration-fast);
}
.mobile-cta-btn:hover { background: var(--gold-light); }

/* ============================
   SCROLL ANIMATIONS
   ============================ */
.anim-on-scroll {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.anim-on-scroll.visible {
  opacity: 1; transform: translateY(0);
}
/* Stagger for service cards */
.anim-on-scroll[style*="--delay:0"] { transition-delay: 0ms; }
.anim-on-scroll[style*="--delay:1"] { transition-delay: 100ms; }
.anim-on-scroll[style*="--delay:2"] { transition-delay: 200ms; }
.anim-on-scroll[style*="--delay:3"] { transition-delay: 300ms; }
