/* =========================================
   BEAR COUNTRY WASH — Global Styles
   Brand: Black & Gold | Mobile-First
   ========================================= */

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

/* ─── Variables ─────────────────────────── */
:root {
  --bg:          #080807;
  --surface:     #0f0f0e;
  --surface2:    #181807;
  --surface3:    #202010;
  --gold:        #C8A018;   /* main metallic gold — matches logo body */
  --gold-light:  #ECC840;   /* bright highlight — logo sparkle tone */
  --gold-bright: #FFE060;   /* peak sparkle white-gold */
  --gold-dark:   #9A7010;   /* shadow/depth gold */
  --gold-glow:   rgba(200, 160, 24, 0.16);
  --gold-glow2:  rgba(236, 200, 64, 0.10);
  --text:        #FFFFFF;
  --text-muted:  #888888;
  --text-dim:    #555555;
  --border:      rgba(200, 160, 24, 0.22);
  --radius:      12px;
  --radius-lg:   20px;
  --nav-height:  72px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ─── Typography ─────────────────────────── */
.font-display { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.04em; }
.font-heading  { font-family: 'Oswald', sans-serif; }

h1, h2, h3 { font-family: 'Oswald', sans-serif; font-weight: 700; line-height: 1.1; }
h1 { font-size: clamp(2.4rem, 8vw, 5rem); }
h2 { font-size: clamp(1.8rem, 5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

.gold { color: var(--gold); }
.gold-text { color: var(--gold-light); }

/* Metallic gradient text — matches logo lettering */
.gold-gradient {
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold-light) 35%, var(--gold) 65%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Utility ─────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }

.section {
  padding: 80px 0;
}
@media (min-width: 768px) { .section { padding: 100px 0; } }

.section-label {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--gold-glow);
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0 32px;
}

/* ─── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: #080807;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(200, 160, 24, 0.4), inset 0 1px 0 rgba(255,224,96,0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-light) 50%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(200, 160, 24, 0.55), inset 0 1px 0 rgba(255,224,96,0.4);
}
.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold-glow);
  transform: translateY(-2px);
}

/* ─── Navigation ─────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .nav-inner { padding: 0 40px; } }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 44px;
  width: auto;
}
.nav-logo-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
}
.nav-logo-text span { color: var(--gold); display: block; font-size: 0.65rem; font-weight: 400; letter-spacing: 0.15em; }

.nav-links {
  display: none;
  align-items: center;
  gap: 36px;
}
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { display: none; }
@media (min-width: 900px) { .nav-cta { display: inline-flex; } }

/* Mobile menu */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
@media (min-width: 768px) { .nav-hamburger { display: none; } }

.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(8, 8, 8, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 24px 20px 32px;
  border-bottom: 1px solid var(--border);
  z-index: 999;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover, .nav-mobile a.active { color: var(--gold); }

/* ─── Hero ─────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/storefront.jpg');
  background-size: cover;
  background-position: center 65%;
  background-repeat: no-repeat;
  filter: grayscale(35%) brightness(0.55) contrast(1.05) sepia(12%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(200,160,24,0.16) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(200,160,24,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 30% 30% at 85% 15%, rgba(236,200,64,0.10) 0%, transparent 50%),
    linear-gradient(180deg, rgba(8,8,7,0.82) 0%, rgba(8,8,7,0.75) 40%, rgba(8,8,7,0.92) 75%, #080807 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,160,24,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,160,24,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 60px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 12vw, 8rem);
  letter-spacing: 0.03em;
  line-height: 0.95;
  margin-bottom: 24px;
  text-shadow: 0 0 80px rgba(201,162,39,0.15);
}
.hero-title .highlight {
  color: var(--gold);
  display: block;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.hero-stat-value {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.hero-badge {
  position: absolute;
  right: 0; bottom: 10%;
  width: 160px; height: 160px;
  display: none;
}
@media (min-width: 900px) { .hero-badge { display: flex; align-items: center; justify-content: center; } }
.hero-badge-ring {
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}
.hero-badge-ring::before {
  content: '';
  position: absolute;
  top: -3px; left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.hero-badge-text {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  line-height: 1.5;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Hero logo display */
.hero-logo-display {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 340px;
  display: none;
  align-items: center;
  justify-content: center;
}
@media (min-width: 960px) { .hero-logo-display { display: flex; } }

.hero-logo-img {
  width: 100%;
  max-width: 320px;
  filter: drop-shadow(0 0 60px rgba(200,160,24,0.35)) drop-shadow(0 0 120px rgba(200,160,24,0.15));
  animation: logoFloat 5s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid var(--text-dim);
  border-radius: 11px;
  position: relative;
}
.scroll-mouse::before {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 6px;
  background: var(--text-dim);
  border-radius: 2px;
  animation: scrollDown 1.8s ease infinite;
}
@keyframes scrollDown {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 18px; }
}

/* ─── Features strip ─────────────────────── */
.features-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.features-strip-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 768px) { .features-strip-inner { grid-template-columns: repeat(4, 1fr); } }

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.feature-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.feature-text strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
.feature-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ─── Wash Packages / Pricing Cards ─────── */
.pricing-menu-img {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); } }

.pricing-card {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
  border-color: var(--border);
}
.pricing-card:hover::before { opacity: 1; }

.pricing-card.featured {
  background: linear-gradient(160deg, #1e1800 0%, #141000 40%, #0f0e08 100%);
  border-color: rgba(200,160,24,0.45);
  box-shadow: 0 0 0 1px rgba(200,160,24,0.35), 0 24px 64px rgba(200,160,24,0.12);
}
.pricing-card.featured::before { opacity: 1; }

.featured-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #080807;
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.card-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.card-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}
.card-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 28px;
}
.card-price .currency {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 8px;
}
.card-price .amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.8rem;
  color: var(--gold);
  line-height: 1;
}
.card-price .period {
  font-size: 0.8rem;
  color: var(--text-muted);
  align-self: flex-end;
  padding-bottom: 8px;
}
.card-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.card-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.card-feature .check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.6rem;
  color: var(--gold);
}
.card-feature.included { color: var(--text); }
.card-feature.included .check { background: rgba(201,162,39,0.2); }

.card-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* Membership section */
.membership-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .membership-grid { grid-template-columns: repeat(2, 1fr); } }

.membership-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.membership-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.membership-card.featured {
  background: linear-gradient(160deg, #1a1400 0%, var(--surface) 100%);
  border-color: var(--gold-dark);
}

/* Self-service */
.selfserv-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .selfserv-card { flex-direction: row; align-items: center; justify-content: space-between; }
}

.selfserv-instructions {
  margin-top: 32px;
  text-align: center;
}
.selfserv-instructions img {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* ─── About / Features ───────────────────── */
.about-grid {
  display: grid;
  gap: 48px;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1fr; align-items: center; }
}
.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface);
  border: 1px solid var(--border);
}
.about-visual-inner {
  position: absolute; inset: 0;
  background-image: url('../images/storefront.jpg');
  background-size: cover;
  background-position: center 60%;
  filter: grayscale(30%) brightness(0.65) contrast(1.05) sepia(14%);
}
.about-visual-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(200,160,24,0.22) 0%, transparent 55%), linear-gradient(0deg, rgba(8,8,7,0.55), transparent 60%);
}
.about-logo {
  position: absolute;
  z-index: 1;
  left: 50%; bottom: 20px;
  transform: translateX(-50%);
  width: 34%;
  max-width: 110px;
  opacity: 0.95;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.6));
}
.about-corner {
  position: absolute;
  width: 40px; height: 40px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.5;
}
.about-corner.tl { top: 16px; left: 16px; border-width: 2px 0 0 2px; }
.about-corner.br { bottom: 16px; right: 16px; border-width: 0 2px 2px 0; }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.feature-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-row-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.feature-row-body strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}
.feature-row-body p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── Location / Hours ───────────────────── */
.location-grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 900px) {
  .location-grid { grid-template-columns: 1fr 1fr; }
}
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 360px;
  background: var(--surface);
}
.map-container iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(40%) invert(92%) hue-rotate(180deg) brightness(0.85);
}
.info-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.info-row {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-row:first-child { padding-top: 0; }
.info-row-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.info-row-body strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.info-row-body p, .info-row-body a {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.info-row-body a:hover { color: var(--gold); }

.hours-table {
  width: 100%;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.88rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--text-muted); }
.hours-time {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
}
.hours-time.gold { color: var(--gold); }

/* ─── Contact ────────────────────────────── */
.contact-grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.4fr; }
}
.contact-form-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--surface2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-group select option { background: var(--surface2); }
.form-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.contact-info-body strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-info-body p, .contact-info-body a {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-info-body a:hover { color: var(--gold); }

/* ─── CTA Banner ─────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #1e1800 0%, #120f00 50%, #080807 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200,160,24,0.10) 0%, transparent 70%);
}
.cta-inner {
  position: relative;
  text-align: center;
  padding: 80px 20px;
}
.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.cta-subtitle {
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: 1.05rem;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ─── Footer ─────────────────────────────── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  margin-bottom: 48px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand img {
  height: 48px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.5;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--text); }

/* ─── FAQ ─────────────────────────────────── */
.faq-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-question {
  background: none;
  border: none;
  padding: 0;
  width: 100%;
  text-align: left;
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.4;
  transition: opacity var(--transition);
}
.faq-question:hover { opacity: 0.85; }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-family: sans-serif;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
}
.faq-question.open::after { content: '−'; }
.faq-answer {
  color: var(--text-muted);
  padding-top: 12px;
  line-height: 1.8;
  font-size: 0.9rem;
  display: none;
}
.faq-answer.open { display: block; }
.faq-answer ul {
  margin: 10px 0 0 20px;
  list-style: disc;
}
.faq-answer li { margin-bottom: 6px; }

/* Social links */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: var(--gold);
  font-size: 0.9rem;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.social-links a:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-dim);
}
.footer-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── Animations ─────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ─── Gallery ─────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 0;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 18px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  color: var(--text);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: left;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5,5,4,0.94);
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}
.lightbox-close:hover { color: var(--gold); }

/* ─── Page-specific: Services page ───────── */
.page-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: calc(var(--nav-height) + 60px) 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,162,39,0.06) 0%, transparent 60%);
}
.page-hero-inner { position: relative; }
.page-hero-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin-bottom: 16px;
}
.page-hero-sub {
  color: var(--text-muted);
  max-width: 500px;
  font-size: 1rem;
  line-height: 1.7;
}

/* ─── Alert/Notice ───────────────────────── */
.notice {
  background: var(--gold-glow);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.notice-icon { font-size: 1.2rem; flex-shrink: 0; }
.notice strong { color: var(--gold); }

/* ─── Scrollbar ──────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ─── Mobile UX fixes ────────────────────── */

/* Sticky CTA bar — mobile only */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  background: #111;
  border-top: 2px solid var(--gold);
}
.sticky-btn {
  flex: 1;
  padding: 16px;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}
.sticky-btn.directions {
  background: var(--gold);
  color: #111;
}
.sticky-btn.call {
  background: var(--gold);
  color: #111;
}
@media (min-width: 768px) {
  .mobile-sticky-cta { display: none; }
}
@media (max-width: 767px) {
  body { padding-bottom: 64px; }
  /* Tighten hero stats gap on small screens */
  .hero-stats { gap: 20px; }
  /* Map iframe hidden on mobile — direction buttons below remain */
  .map-container { display: none; }
  /* Single-col pricing: cap width so card doesn't stretch full screen */
  .pricing-grid { max-width: 380px; margin-left: auto; margin-right: auto; }
}
