/* =====================================================
   IGNITION ASV – Complete Design System v2
   Dark premium automotive aesthetic
   ===================================================== */

/* --- Custom Properties --- */
:root {
  /* Brand: Ignition Automotive Sound & Vision — steel blue + chrome */
  --amber:        #2B8FCA;
  --amber-dark:   #1A6CB5;
  --amber-light:  #5BAEE5;
  --amber-glow:   rgba(43,143,202,0.14);
  --amber-border: rgba(43,143,202,0.30);

  /* Accent chrome/silver for headings */
  --chrome:       #C8D8E8;
  --chrome-dim:   rgba(200,216,232,0.55);

  --bg-base:      #060810;
  --bg-section:   #0A0E18;
  --bg-alt:       #0F1520;
  --bg-card:      #131B28;
  --bg-card-h:    #1A2438;

  --text-white:   #FFFFFF;
  --text-sub:     rgba(255,255,255,0.62);
  --text-muted:   rgba(255,255,255,0.35);

  --border:       rgba(255,255,255,0.07);
  --border-h:     rgba(255,255,255,0.13);

  /* Quote page compat */
  --yellow:       #2B8FCA;
  --yellow-dark:  #1A6CB5;
  --dark:         #0A0E18;
  --dark2:        #131B28;
  --mid:          #374151;
  --grey:         #6B7280;
  --light:        #F9FAFB;
  --white:        #FFFFFF;
  --radius:       10px;
  --shadow:       0 8px 40px rgba(0,0,0,0.6);
  --transition:   0.2s ease;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Scroll Animation Classes --- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal].visible {
  opacity: 1;
  transform: none;
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }
[data-reveal-delay="6"] { transition-delay: 0.6s; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 7px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.22s ease;
  text-align: center;
  text-decoration: none;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--amber);
  color: #ffffff;
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
  box-shadow: 0 0 28px rgba(43,143,202,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border-color: rgba(255,255,255,0.28);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline-amber {
  background: transparent;
  color: var(--amber);
  border-color: var(--amber-border);
}
.btn-outline-amber:hover {
  background: var(--amber-glow);
  border-color: var(--amber);
}

.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }
.btn-nav {
  background: var(--amber);
  color: #ffffff;
  padding: 9px 20px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 0.88rem;
}
.btn-nav:hover { background: var(--amber-light); box-shadow: 0 0 20px rgba(43,143,202,0.35); }

/* --- NAV --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.site-header.scrolled {
  background: rgba(7,10,15,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-bolt { width: 22px; height: 30px; flex-shrink: 0; }

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: 0.5px;
  line-height: 1;
}
.logo-ignition { color: var(--text-white); }
.logo-asv      { color: var(--amber); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  color: rgba(255,255,255,0.78);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.main-nav a:hover,
.main-nav a.active { color: var(--amber); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: rgba(7,10,15,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--border);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--border); font-size: 1rem; }
  .btn-nav { margin-top: 14px; border-bottom: none !important; align-self: flex-start; }
}

/* --- Narrow viewport (≤480px) --- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding-top: 64px; }
  .hero-title { font-size: clamp(52px, 13vw, 68px); }
  .hero-cta .btn { flex: 1 1 100%; justify-content: center; }
  .cta-band { padding: 64px 0; }
  .cta-band-actions { width: 100%; }
  .cta-band-actions .btn { flex: 1 1 100%; justify-content: center; }
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 70px;
  background: var(--bg-base);
}

/* Hero background photo with parallax */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/bgimages.png');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  transform: scale(1.06);
  transition: transform 0.1s linear;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(6,8,16,0.88) 0%,
    rgba(6,8,16,0.70) 50%,
    rgba(6,8,16,0.82) 100%
  );
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* blue glow blobs */
.hero-glow-a {
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(43,143,202,0.22) 0%, transparent 65%);
  pointer-events: none;
  animation: pulse-glow 6s ease-in-out infinite alternate;
  z-index: 1;
}
.hero-glow-b {
  position: absolute;
  bottom: 60px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(43,143,202,0.10) 0%, transparent 65%);
  pointer-events: none;
  animation: pulse-glow 8s ease-in-out 2s infinite alternate;
  z-index: 1;
}

@keyframes pulse-glow {
  from { opacity: 0.7; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.1); }
}

/* Hero text entry animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 160px 24px 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Logo image in nav */
.logo-img {
  height: 58px;
  width: auto;
  display: block;
  filter: brightness(1.05) drop-shadow(0 1px 6px rgba(43,143,202,0.25));
}

/* Hero text entry animation classes */
.anim-fadeup     { animation: fadeUp    0.75s cubic-bezier(0.22,1,0.36,1) both; }
.anim-fadein     { animation: fadeIn    0.6s  ease both; }
.anim-fadein-d1  { animation: fadeUp    0.75s cubic-bezier(0.22,1,0.36,1) 0.15s both; }
.anim-fadein-d2  { animation: fadeUp    0.75s cubic-bezier(0.22,1,0.36,1) 0.30s both; }
.anim-fadein-d3  { animation: fadeUp    0.75s cubic-bezier(0.22,1,0.36,1) 0.45s both; }
.anim-fadein-d4  { animation: fadeIn    0.65s ease                         0.60s both; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber-glow);
  border: 1px solid var(--amber-border);
  color: var(--amber);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--amber);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(68px, 11vw, 128px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-title-line        { display: block; color: var(--text-white); }
.hero-title-line.blue   {
  color: var(--amber);
  background: linear-gradient(90deg, #5BAEE5 0%, #2B8FCA 40%, #ffffff 60%, #5BAEE5 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear 0.8s infinite;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-sub);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-h);
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
}
.hero-badge svg { width: 16px; height: 16px; color: var(--amber); flex-shrink: 0; }

/* --- TICKER --- */
.ticker-wrap {
  position: relative;
  z-index: 1;
  background: rgba(43,143,202,0.07);
  border-top: 1px solid rgba(43,143,202,0.18);
  overflow: hidden;
  padding: 13px 0;
}
.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}
.ticker-item svg { width: 14px; height: 14px; color: var(--amber); flex-shrink: 0; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --- SECTION SHARED --- */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-section); }
.section-dark { background: var(--bg-alt); }

.section-eyebrow {
  display: inline-block;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--text-white);
  margin-bottom: 14px;
}
.section-sub {
  color: var(--text-sub);
  max-width: 540px;
  font-size: 1rem;
  line-height: 1.75;
}

/* --- FEATURED WORK STRIP --- */
.featured-work-section {
  padding: 72px 0 80px;
  background: var(--bg-section);
}
.featured-work-hd {
  margin-bottom: 40px;
}
.featured-work-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 14px;
}
.fw-large {
  grid-row: 1 / 3;
}
.fw-tile {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-card);
  cursor: pointer;
}
.fw-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
  display: block;
}
.fw-tile:hover img { transform: scale(1.07); }
.fw-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,8,16,0.88) 0%, rgba(6,8,16,0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 20px;
  transition: background 0.3s;
}
.fw-tile:hover .fw-tile-overlay {
  background: linear-gradient(to top, rgba(6,8,16,0.95) 0%, rgba(43,143,202,0.08) 70%, transparent 100%);
}
.fw-tile-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--amber);
  margin-bottom: 6px;
}
.fw-tile-caption {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
  margin: 0;
}
.fw-large .fw-tile-caption { font-size: 1rem; }

@media (max-width: 900px) {
  .featured-work-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .fw-large { grid-row: 1; grid-column: 1 / 3; }
}
@media (max-width: 560px) {
  .featured-work-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 220px);
  }
  .fw-large { grid-row: 1; grid-column: 1; }
}

/* --- SERVICES --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

@media (max-width: 860px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
  transition: border-color 0.28s, box-shadow 0.28s, transform 0.28s, background 0.28s;
}
.service-card:hover {
  border-color: var(--amber-border);
  box-shadow: 0 0 32px rgba(43,143,202,0.18), inset 0 0 0 1px rgba(43,143,202,0.08);
  transform: translateY(-5px);
  background: var(--bg-card-h);
}

.service-icon-wrap {
  width: 52px; height: 52px;
  background: var(--amber-glow);
  border: 1px solid var(--amber-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.28s, box-shadow 0.28s;
}
.service-card:hover .service-icon-wrap {
  background: rgba(43,143,202,0.25);
  box-shadow: 0 0 16px rgba(43,143,202,0.30);
}
.service-icon-wrap svg { width: 24px; height: 24px; color: var(--amber); }

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.7;
}

/* --- STATS BAR --- */
.stats-bar {
  background: var(--amber);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-y: none;
}
.stat-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.12);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid rgba(0,0,0,0.12); }
  .stat-item:nth-child(2) { border-right: none; }
}
@media (max-width: 400px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; }
}

/* --- ABOUT --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 56px;
}

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 32px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.about-list li svg {
  width: 18px; height: 18px;
  color: var(--amber);
  flex-shrink: 0;
}

.about-contact { display: flex; flex-direction: column; gap: 10px; }
.about-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-sub);
}
.about-contact-item svg { width: 16px; height: 16px; color: var(--amber); flex-shrink: 0; }
.about-contact-item a { color: var(--amber); font-weight: 600; transition: color 0.2s; }
.about-contact-item a:hover { color: var(--amber-light); }

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-h);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  flex: 1;
}
.about-map-wrap iframe {
  width: 100%;
  height: 340px;
  display: block;
  border: 0;
  filter: grayscale(0.25) brightness(0.85);
}

.about-profile-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-h);
  border-radius: 12px;
  padding: 16px 20px;
}
.about-profile-img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--amber-border);
  flex-shrink: 0;
}
.about-profile-text p:first-child {
  font-weight: 700;
  font-size: 0.95rem;
}
.about-profile-text p:last-child {
  font-size: 0.82rem;
  color: var(--text-sub);
}
.about-fb-stars { color: var(--amber); font-size: 0.85rem; letter-spacing: 1px; }

/* --- GALLERY --- */
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
}
@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
}

.gallery-tile {
  position: relative;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: transform 0.3s, box-shadow 0.3s;
  padding: 0;
  display: block;
  width: 100%;
}
.gallery-tile--wide { grid-column: span 2; }
.gallery-tile--tall { grid-row: span 2; }
@media (max-width: 500px) {
  .gallery-tile--wide { grid-column: span 1; }
  .gallery-tile--tall { grid-row: span 1; }
}
.gallery-tile:hover {
  transform: scale(1.025);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  z-index: 2;
}

.gallery-tile-gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 65%;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}

.gallery-tile-label {
  position: absolute;
  bottom: 18px;
  left: 20px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-white);
}
.gallery-tile-sub {
  position: absolute;
  bottom: 0;
  left: 20px;
  font-size: 0.78rem;
  color: var(--amber);
  font-weight: 600;
  bottom: 4px;
}

.gallery-tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(43,143,202,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.28s;
}
.gallery-tile:hover .gallery-tile-overlay { opacity: 1; }
.gallery-overlay-btn {
  background: var(--amber);
  color: #080B10;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: 7px;
  transition: background 0.2s;
}
.gallery-overlay-btn:hover { background: var(--amber-light); }

/* --- Gallery category filter pills --- */
.gallery-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.gallery-cat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-sub);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  font-family: var(--font-body);
  white-space: nowrap;
}
.gallery-cat svg { width: 15px; height: 15px; flex-shrink: 0; }
.gallery-cat:hover {
  border-color: var(--amber-border);
  color: var(--amber);
}
.gallery-cat.active {
  background: var(--amber);
  border-color: var(--amber);
  color: #080B10;
}
.gallery-cat.active svg { stroke: #080B10; fill: #080B10; }

/* --- Real photo tiles --- */
.gallery-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-tile:hover img { transform: scale(1.06); }
.gallery-tile-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.72);
  color: var(--amber);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}

/* --- Gallery expand button --- */
.gallery-expand-wrap {
  margin-top: 36px;
  text-align: center;
}
.gallery-expand-wrap.hidden { display: none; }

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
}
.lightbox[hidden] { display: none; }

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  z-index: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  z-index: 1;
}
.lightbox-nav:hover { background: rgba(43,143,202,0.35); }
.lightbox-nav svg { width: 22px; height: 22px; }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

.lightbox-inner {
  max-width: min(900px, 92vw);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.lightbox-img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 10px;
  display: block;
}
.lightbox-info {
  text-align: center;
  max-width: 640px;
}
.lightbox-tag {
  display: inline-block;
  background: var(--amber-glow);
  border: 1px solid var(--amber-border, rgba(43,143,202,0.3));
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.lightbox-caption {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 8px;
}
.lightbox-counter {
  font-size: 0.8rem;
  color: var(--text-sub);
}

@media (max-width: 600px) {
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* --- REVIEWS --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
@media (max-width: 860px) { .reviews-grid { grid-template-columns: 1fr; max-width: 500px; } }

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-h);
  border-radius: 14px;
  padding: 28px 26px;
  transition: border-color 0.28s, box-shadow 0.28s;
}
.review-card:hover {
  border-color: var(--amber-border);
  box-shadow: 0 0 24px rgba(43,143,202,0.08);
}

.review-stars { color: var(--amber); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text {
  font-style: italic;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 18px;
  font-size: 0.95rem;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--amber-glow);
  border: 1px solid var(--amber-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--amber);
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 0.88rem; }
.review-platform { font-size: 0.75rem; color: var(--text-muted); }

.reviews-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* --- CTA BAND --- */
.cta-band {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background-image: url('../images/storefront.jpg');
  background-size: cover;
  background-position: center 35%;
  background-attachment: fixed;
}
/* dark overlay so text stays legible */
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(6,8,16,0.88) 0%,
    rgba(6,8,16,0.70) 55%,
    rgba(6,8,16,0.60) 100%
  );
  pointer-events: none;
}
/* blue glow accent top-right */
.cta-band::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(43,143,202,0.20) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.cta-band-text .section-eyebrow { margin-bottom: 10px; }
.cta-band-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 10px;
}
.cta-band-text p { color: var(--text-sub); font-size: 1rem; max-width: 460px; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* --- FOOTER --- */
.site-footer {
  background: #040608;
  border-top: 1px solid var(--border);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; color: var(--text-sub); max-width: 260px; line-height: 1.7; }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 38px; height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border-h);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-sub);
  transition: all 0.2s;
  cursor: pointer;
}
.footer-social a:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: white;
}
.footer-social svg { width: 18px; height: 18px; }

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-sub);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--amber); }

.footer-contact-items { display: flex; flex-direction: column; gap: 13px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.5;
}
.footer-contact-item svg { width: 15px; height: 15px; color: var(--amber); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: var(--amber); font-weight: 600; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--amber-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--amber); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--amber-light); }

/* --- FORM SHARED (for quote.html) --- */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-weight: 600;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
}
.req { color: #F87171; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border-h);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  background: var(--bg-section);
  color: var(--text-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group select option { background: #141B26; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(43,143,202,0.15);
}
.form-group textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* --- Utilities --- */
.text-amber  { color: var(--amber); }
.mt-8        { margin-top: 8px; }
.mt-16       { margin-top: 16px; }
.mt-24       { margin-top: 24px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ═══ QR CODE MODAL ═══ */
.qr-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qr-modal[hidden] { display: none; }

.qr-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.qr-box {
  position: relative;
  background: #0E1420;
  border: 1px solid rgba(43,143,202,0.35);
  border-radius: 20px;
  padding: 36px 40px 32px;
  text-align: center;
  max-width: 320px;
  width: calc(100% - 48px);
  box-shadow: 0 0 60px rgba(43,143,202,0.20), 0 24px 48px rgba(0,0,0,0.6);
  animation: qrFadeIn 0.22s ease;
}
@keyframes qrFadeIn {
  from { opacity: 0; transform: scale(0.92) translateY(8px); }
  to   { opacity: 1; transform: scale(1)   translateY(0); }
}

.qr-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.15s, color 0.15s;
}
.qr-close:hover { background: rgba(255,255,255,0.15); color: #fff; }
.qr-close svg { width: 16px; height: 16px; }

.qr-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 6px;
}
.qr-title {
  font-family: var(--font-display, 'Barlow Condensed', sans-serif);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--text-white);
  margin: 0 0 20px;
  letter-spacing: 0.02em;
}

.qr-img-wrap {
  background: #ffffff;
  border-radius: 12px;
  padding: 10px;
  display: inline-block;
  margin-bottom: 18px;
}
.qr-img { display: block; border-radius: 6px; }

.qr-sub {
  font-size: 0.85rem;
  color: var(--text-sub);
  line-height: 1.55;
  margin-bottom: 8px;
}
.qr-hours {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}
