:root {
  --bg: #0a0a0a;
  --bg-elevated: #161513;
  --bg-elevated-2: #1e1c18;
  --gold: #c9a24b;
  --gold-light: #e6c988;
  --gold-dark: #8a6d2f;
  --text: #f5f0e6;
  --text-muted: #a89f8e;
  --border: rgba(201, 162, 75, 0.22);
  --radius: 10px;
  --font-body: "Montserrat", sans-serif;
  --font-script: "Kaushan Script", cursive;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
  /* Stops the "select this image to copy/save" behavior a double-tap (or
     double-click, or a mobile long-press) triggers by default. */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.eyebrow.center { text-align: center; }

.section-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title.center { text-align: center; }
.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--gold-light);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1a1408;
  box-shadow: 0 10px 30px rgba(201, 162, 75, 0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(201, 162, 75, 0.35); }
.btn-outline {
  border-color: rgba(245, 240, 230, 0.35);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; gap: 20px; }
.logo { font-family: var(--font-script); font-size: 1.7rem; color: var(--gold-light); white-space: nowrap; }

.main-nav ul {
  display: flex;
  gap: 32px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.main-nav a { transition: color 0.2s ease; }
.main-nav a:hover { color: var(--gold-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--text); transition: transform 0.2s ease, opacity 0.2s ease; }

.header-cta { padding: 11px 24px; font-size: 0.85rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 160px 0 110px;
  text-align: center;
  overflow: hidden;
}

.hero-slideshow { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  animation: heroSlideFade 40s infinite;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 8s; }
.hero-slide:nth-child(3) { animation-delay: 16s; }
.hero-slide:nth-child(4) { animation-delay: 24s; }
.hero-slide:nth-child(5) { animation-delay: 32s; }

@keyframes heroSlideFade {
  0% { opacity: 0; }
  7.5% { opacity: 1; }
  12.5% { opacity: 1; }
  20% { opacity: 0; }
  100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none; opacity: 0; }
  .hero-slide:first-child { opacity: 1; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 8, 6, 0.55) 0%, rgba(8, 7, 5, 0.85) 60%, var(--bg) 100%),
    radial-gradient(ellipse at 50% 0%, rgba(201, 162, 75, 0.18), transparent 60%);
}
.hero-inner { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
}
.hero h1 .script { font-size: 1.15em; }
.hero-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto 34px; }
.hero-cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--gold);
  color: #1a1408;
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
}
.marquee-track {
  display: inline-flex;
  gap: 18px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  animation: marqueeScroll 22s linear infinite;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Sections (shared spacing) ---------- */
section { padding: 90px 0; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.service-card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.service-card:hover { border-color: rgba(201, 162, 75, 0.5); transform: translateY(-3px); }
.service-card.featured { border-color: var(--gold); background: var(--bg-elevated-2); }
.service-icon { width: 30px; height: 30px; color: var(--gold); margin-bottom: 16px; }
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 18px; }
.price { font-family: var(--font-script); font-size: 1.6rem; color: var(--gold-light); }
.badge {
  position: absolute;
  top: -12px;
  right: 22px;
  background: var(--gold);
  color: #1a1408;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

/* ---------- About ---------- */
.about-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.about-lead { color: var(--text-muted); margin-bottom: 24px; }
.feature-list li {
  padding: 14px 0;
  border-top: 1px solid var(--border);
  font-size: 0.94rem;
  color: var(--text-muted);
}
.feature-list li strong { color: var(--text); font-weight: 700; }
.about-visual { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.about-visual img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.gallery-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
}
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.gallery-tile:hover img { transform: scale(1.06); }
.gallery-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(8, 7, 5, 0.85) 100%); }
.gallery-tile span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  font-family: var(--font-script);
  font-size: 1.2rem;
  color: var(--gold-light);
}

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.testimonial-card { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card p { color: var(--text-muted); font-size: 0.94rem; margin-bottom: 16px; }
.testimonial-name { font-weight: 700; font-size: 0.85rem; }

/* ---------- Hours & Location ---------- */
.hours { background: var(--bg-elevated); }
.hours-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.hours-list li { display: flex; justify-content: space-between; padding: 12px 0; border-top: 1px solid var(--border); font-size: 0.94rem; }
.hours-list li span:first-child { color: var(--text-muted); }
.hours-list li span:last-child { font-weight: 700; }
.hours-note { margin-top: 18px; color: var(--text-muted); font-size: 0.85rem; }
.location-address, .location-phone { font-size: 1.05rem; margin-bottom: 8px; }
.location-phone { color: var(--gold-light); font-weight: 700; margin-bottom: 20px; }
.map-placeholder { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; background: radial-gradient(ellipse at 50% 0%, rgba(201, 162, 75, 0.12), transparent 70%); }
.cta-inner h2 { font-family: var(--font-body); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; }
.cta-inner > p { color: var(--text-muted); margin-bottom: 30px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 40px 0; text-align: center; }
.footer-logo { font-size: 1.4rem; }
.footer-tagline { margin-top: 10px; color: var(--text-muted); font-size: 0.88rem; }
.footer-note { margin-top: 6px; color: rgba(168, 159, 142, 0.6); font-size: 0.78rem; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .services-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner, .hours-inner { grid-template-columns: 1fr; }
  .about-visual img { aspect-ratio: 16 / 9; }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }
  .services-grid, .testimonial-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .main-nav ul {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }
  /* transform/opacity (not a viewport-relative slide) so this doesn't
     depend on the element's own height — .site-header's backdrop-filter
     makes it the containing block for this fixed element, which breaks
     percentage/inset-based height math against the real viewport. */
  .main-nav ul.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav li { border-bottom: 1px solid var(--border); }
  .main-nav a { display: block; padding: 16px 0; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .hero { padding: 120px 0 70px; }
}

@media (max-width: 480px) {
  .services-grid, .testimonial-grid, .gallery-grid { grid-template-columns: 1fr; }
}
