/* Car detailer demo — premium, dark, gold accents (not agency) */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: #e5e5e5;
  background: #0a0a0a;
  -webkit-tap-highlight-color: transparent;
}
img { max-width: 100%; height: auto; }

a { color: #d4af37; text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 560px; }
.section { padding: 72px 0; }
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}
.section-lead { color: #a3a3a3; margin: 0 0 36px; font-size: 1.05rem; font-weight: 300; }
.section-cta { margin-top: 28px; }

/* Header */
.site-header {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(212,175,55,0.2);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #d4af37 !important;
  letter-spacing: 0.08em;
}
.logo:hover { text-decoration: none; opacity: 0.9; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 8px 28px;
  flex-wrap: wrap;
}
.main-nav a {
  color: #a3a3a3;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.main-nav a:hover { color: #fff; }
.link-cta { color: #d4af37 !important; }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(212,175,55,0.5);
  color: #d4af37;
  padding: 8px 12px;
  font-size: 1.2rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .main-nav { display: none; }
  .main-nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #0a0a0a; padding: 24px; border-bottom: 1px solid rgba(212,175,55,0.2); }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  min-height: 44px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: 2px solid transparent;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { text-decoration: none; }
.btn-gold {
  background: #d4af37;
  color: #0a0a0a;
  border-color: #d4af37;
}
.btn-gold:hover { background: #c9a227; border-color: #c9a227; color: #0a0a0a; }
.btn-outline {
  background: transparent;
  color: #d4af37;
  border-color: #d4af37;
}
.btn-outline:hover { background: rgba(212,175,55,0.15); color: #e5c04a; }
.btn-big { padding: 18px 36px; font-size: 1.05rem; }

/* Hero — full-viewport dark overlay */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.85) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 48px 24px;
}
.hero-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d4af37;
  margin: 0 0 16px;
}
.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
.hero-sub {
  color: #a3a3a3;
  font-size: 1.1rem;
  font-weight: 300;
  margin: 0 0 32px;
  line-height: 1.6;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Services — image + text blocks */
.section-services { background: #111; }
.services-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.service-block {
  background: #1a1a1a;
  border: 1px solid #262626;
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.service-block:hover { border-color: rgba(212,175,55,0.4); }
.service-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-block h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  padding: 20px 20px 8px;
}
.service-block p {
  color: #a3a3a3;
  margin: 0;
  padding: 0 20px 20px;
  font-size: 0.95rem;
  font-weight: 300;
}

/* Gallery — simple grid */
.section-gallery { background: #0a0a0a; }
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 700px) { .gallery-masonry { grid-template-columns: 1fr; } }
.gallery-tile {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #262626;
}
.gallery-tile img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* Contact */
.section-contact {
  background: #111;
  border-top: 1px solid #262626;
  text-align: center;
}
.contact-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.demo-note { font-size: 0.85rem; color: #525252; margin: 0; }

/* Footer */
.site-footer {
  background: #0a0a0a;
  padding: 28px;
  border-top: 1px solid #262626;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer a { color: #737373; }
.site-footer a:hover { color: #d4af37; }
.site-footer .btn-outline { color: #d4af37; border-color: #d4af37; }
.site-footer .btn-outline:hover { background: rgba(212,175,55,0.1); color: #d4af37; }

/* Sticky CTA — safe area for iOS notch / Android nav */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10,10,10,0.96);
  padding: 14px 24px;
  padding-bottom: max(14px, env(safe-area-inset-bottom));
  padding-left: max(24px, env(safe-area-inset-left));
  padding-right: max(24px, env(safe-area-inset-right));
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 99;
  border-top: 1px solid rgba(212,175,55,0.2);
}
.sticky-bar .btn { min-height: 44px; }
.sticky-bar .btn-gold { background: #d4af37; color: #0a0a0a; border-color: #d4af37; }
.sticky-bar .btn-gold:hover { background: #c9a227; color: #0a0a0a; }
.sticky-bar .btn-outline { color: #d4af37; border-color: #d4af37; }
.sticky-bar .btn-outline:hover { background: rgba(212,175,55,0.15); color: #d4af37; }
main { padding-bottom: max(88px, calc(88px + env(safe-area-inset-bottom))); }
