/* ============================================
   Aristocrat Detailing Missouri - Stylesheet
   ============================================ */

/* --- CSS Variables --- */
:root {
  --gold: #d4af37;
  --gold-light: #e8c84a;
  --gold-dark: #b8962e;
  --bg: #111;
  --bg-light: #1a1a1a;
  --bg-card: #181818;
  --text: #eee;
  --text-muted: #999;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-head: 'Josefin Sans', 'Helvetica Neue', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-width: 1200px;
  --nav-height: 110px;
  --transition: 0.3s ease;
  --radius: 8px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
.display-font { font-family: var(--font-display); }
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.section-title p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}
.gold { color: var(--gold); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.btn-gold {
  background: var(--gold);
  color: #111;
}
.btn-gold:hover {
  background: var(--gold-light);
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #111;
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo img {
  max-height: 80px;
  height: auto;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: var(--text);
  font-family: var(--font-head);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  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::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #111 !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
}
.nav-phone::after { display: none !important; }
.nav-phone:hover { background: var(--gold-light); color: #111 !important; }
.nav-social {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.nav-social a::after { display: none !important; }
.nav-social a:hover {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
@media (max-width: 768px) {
  :root { --nav-height: 88px; }
  .nav-logo img { max-height: 60px; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: right var(--transition);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  }
  .nav-links.open { right: 0; }
  .nav-phone { margin-top: 1rem; }
}

/* --- Hero --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.3) 40%, rgba(17,17,17,0.85) 80%, rgba(17,17,17,1) 100%);
  z-index: 1;
}
/* Hero pulse glow */
@keyframes heroPulse {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.08; }
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.15) 0%, transparent 70%);
  animation: heroPulse 6s ease-in-out infinite;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff;
  margin-bottom: 1rem;
}
.hero-content h1 span { color: var(--gold); }
.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- Marquee --- */
.marquee {
  background: var(--gold);
  color: #111;
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.marquee-track {
  display: inline-block;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Sections --- */
section {
  padding: 5rem 0;
}
section:nth-child(even) {
  background: var(--bg-light);
}

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.1);
}
.service-card .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--gold);
}
.service-card h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.service-card .btn { width: 100%; justify-content: center; }

/* --- Photo-driven Services Grid (home page) --- */
.services-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.service-photo-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 175, 55, 0.18);
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.service-photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.8,.2,1);
  filter: saturate(0.95);
}
.service-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(8, 10, 14, 0.92) 0%,
    rgba(8, 10, 14, 0.65) 35%,
    rgba(8, 10, 14, 0.10) 65%,
    rgba(8, 10, 14, 0.00) 100%);
  transition: background var(--transition);
}
.service-photo-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2rem 1.75rem 1.85rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: end;
}
.service-photo-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.service-photo-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.1vw, 1.7rem);
  color: #fff;
  margin: 0 0 .35rem;
  line-height: 1.15;
}
.service-photo-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(.9rem, 1vw, .98rem);
  line-height: 1.5;
  margin: 0 0 .85rem;
}
.service-photo-cta {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-head);
  font-size: .68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition);
}
.service-photo-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}
.service-photo-card:hover img { transform: scale(1.06); filter: saturate(1.05); }
.service-photo-card:hover .service-photo-overlay {
  background: linear-gradient(to top,
    rgba(8, 10, 14, 0.96) 0%,
    rgba(8, 10, 14, 0.70) 40%,
    rgba(212, 175, 55, 0.06) 100%);
}
.service-photo-card:hover .service-photo-cta { gap: .85rem; }

@media (max-width: 640px) {
  .services-photo-grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-photo-card { aspect-ratio: 4 / 3; }
  .service-photo-content {
    padding: 1.5rem 1.25rem 1.35rem;
    gap: 1rem;
  }
  .service-photo-num { font-size: 2.4rem; }
}

/* --- Service Detail (services.html) --- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.service-detail:last-child { border-bottom: none; }
.service-detail .service-info h2 {
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.service-detail .service-info h2 i { font-size: 1.5rem; }
.service-detail .service-info p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.service-detail .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-right: 8px;
  margin-bottom: 8px;
}
.service-detail .pricing {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--gold);
  margin: 1.5rem 0;
  font-weight: 600;
}

/* --- About / Trust Signals --- */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-text h2 { color: var(--gold); margin-bottom: 1rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}
.trust-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.trust-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.08);
}
.trust-item i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  margin: 0 auto 1rem;
}
.trust-item h4 { color: var(--text); margin-bottom: 0.5rem; }
.trust-item p { color: var(--text-muted); font-size: 0.9rem; }

/* --- Featured trust card (about page hero card) --- */
@media (max-width: 540px) {
  .featured-trust {
    grid-template-columns: 1fr !important;
    text-align: center;
    padding: 2rem 1.5rem !important;
  }
  .featured-trust > div:first-child { margin: 0 auto; }
}

/* --- Numbered Manifesto (used on home + about) --- */
.manifesto {
  list-style: none;
  padding: 0;
  margin: 0;
}
.manifesto-item {
  display: grid;
  grid-template-columns: clamp(70px, 8vw, 110px) 1fr;
  gap: clamp(1rem, 3vw, 2.25rem);
  align-items: baseline;
  padding: 1.85rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}
.manifesto-item:last-child { border-bottom: none; }
.manifesto-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.2vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  align-self: center;
}
.manifesto-body h4 {
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 .55rem;
}
.manifesto-body p {
  color: var(--text-muted);
  font-size: clamp(.95rem, 1vw, 1.02rem);
  line-height: 1.65;
  margin: 0;
  max-width: 56ch;
}
/* Compact variant — for tight side-column placement (e.g. home about block) */
.manifesto.compact .manifesto-item {
  padding: 1.15rem 0;
  grid-template-columns: clamp(48px, 6vw, 68px) 1fr;
  gap: 1rem;
}
.manifesto.compact .manifesto-num {
  font-size: clamp(1.85rem, 3vw, 2.4rem);
}
.manifesto.compact .manifesto-body h4 {
  font-size: clamp(.85rem, 1vw, 1rem);
  letter-spacing: 1.5px;
  margin-bottom: .3rem;
}
.manifesto.compact .manifesto-body p {
  font-size: .88rem;
  line-height: 1.55;
}
/* Numeral-less variant — items become single-column with hairline divider only */
.manifesto.no-nums .manifesto-item {
  grid-template-columns: 1fr;
  gap: 0;
}
/* Same modifier on the photo-card grid — drops the numeral column */
.services-photo-grid.no-nums .service-photo-content {
  grid-template-columns: 1fr;
  gap: 0;
}
@media (max-width: 540px) {
  .manifesto-item {
    grid-template-columns: 60px 1fr;
    gap: 1rem;
    padding: 1.5rem 0;
  }
  .manifesto-num { font-size: 2.4rem; }
}

/* --- Stats Counters --- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  text-align: center;
  padding: 3rem 0;
}
.stat-item .stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--gold);
  font-weight: 700;
}
.stat-item .stat-label {
  font-family: var(--font-head);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background var(--transition);
}
.gallery-item:hover::after {
  background: rgba(212, 175, 55, 0.15);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 2001;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  background: rgba(0,0,0,0.5);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.lightbox-nav:hover { background: var(--gold); color: #111; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all var(--transition);
}
.contact-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.08);
}
.contact-item i {
  color: var(--gold);
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 0;
}
.contact-item h4 { margin-bottom: 0.25rem; }
.contact-item p { color: var(--text-muted); }
.contact-item a { color: var(--gold); }
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  min-height: 350px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
}

/* --- Page Header (inner pages) --- */
.page-header {
  padding: calc(var(--nav-height) + 3rem) 0 3rem;
  text-align: center;
  background: linear-gradient(to bottom, rgba(212,175,55,0.05) 0%, var(--bg) 100%);
}
.page-header h1 {
  font-family: var(--font-display);
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.page-header p { color: var(--text-muted); }

/* --- Footer --- */
.footer {
  background: #0a0a0a;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand img { max-height: 100px; height: auto; width: auto; margin-bottom: 1rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; max-width: 300px; }
.footer h4 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links a {
  display: block;
  color: var(--text-muted);
  padding: 4px 0;
  font-size: 0.9rem;
}
.footer-links a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: #111;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Fallback: if JS fails or is slow, show content after short delay */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
/* CSS fallback after 1.5s - content visible even if observer never fires */
@keyframes reveal-fallback {
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  animation: reveal-fallback 0s 1.5s forwards;
}
/* Stagger delays for gallery items */
.gallery-item.reveal:nth-child(1) { transition-delay: 0s; }
.gallery-item.reveal:nth-child(2) { transition-delay: 0.07s; }
.gallery-item.reveal:nth-child(3) { transition-delay: 0.14s; }
.gallery-item.reveal:nth-child(4) { transition-delay: 0.21s; }
.gallery-item.reveal:nth-child(5) { transition-delay: 0.28s; }
.gallery-item.reveal:nth-child(6) { transition-delay: 0.35s; }
.gallery-item.reveal:nth-child(7) { transition-delay: 0.42s; }
.gallery-item.reveal:nth-child(8) { transition-delay: 0.49s; }
.gallery-item.reveal:nth-child(9) { transition-delay: 0.56s; }
.gallery-item.reveal:nth-child(10) { transition-delay: 0.63s; }
.gallery-item.reveal:nth-child(11) { transition-delay: 0.70s; }
.gallery-item.reveal:nth-child(12) { transition-delay: 0.77s; }
/* Stagger for service cards */
.service-card.reveal:nth-child(1) { transition-delay: 0s; }
.service-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.service-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.service-card.reveal:nth-child(4) { transition-delay: 0.3s; }

/* --- Shimmer --- */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.shimmer-text {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 25%, #fff 50%, var(--gold-light) 75%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(17,17,17,1) 100%);
  text-align: center;
  padding: 4rem 0;
}
.cta-banner h2 { color: var(--gold); margin-bottom: 1rem; }
.cta-banner p { color: var(--text-muted); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* --- Responsive --- */
@media (max-width: 992px) {
  .about-content { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 3rem 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 500px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
}
