/* =========================================================
   Swirl Free Detail — Shared Stylesheet
   Dark, premium, luxury aesthetic
   Palette: #0a0a0a bg / #ffffff text / #c9a84c gold accent
   ========================================================= */

:root {
  --bg: #0a0a0a;
  --bg-alt: #121212;
  --bg-card: #161616;
  --text: #ffffff;
  --text-muted: #b8b8b8;
  --gold: #c9a84c;
  --gold-bright: #e0bf63;
  --border: #2a2a2a;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  --max: 1180px;
}

/* ---------- Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--gold-bright);
}

img {
  max-width: 100%;
  display: block;
}

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: var(--bg-alt);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.25rem;
}

.section-title .accent-line {
  width: 70px;
  height: 3px;
  background: var(--gold);
  margin: 1rem auto 0;
}

.text-center {
  text-align: center;
}

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

/* ---------- Navigation ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-logo img {
  height: 64px;
  width: auto;
  display: block;
  transition: opacity 0.2s ease;
}

.nav-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
}

.nav-logo-text span {
  color: var(--gold);
}

.nav-logo:hover img {
  opacity: 0.85;
}

/* Mobile menu toggle (pure CSS) */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  font-size: 1.6rem;
  color: var(--gold);
  user-select: none;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-links a {
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links .nav-cta {
  background: transparent;
  color: var(--gold);
  padding: 0.5rem 1.05rem;
  border: 1px solid var(--gold);
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links .nav-cta::after {
  display: none;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  background: var(--gold);
  color: #0a0a0a;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--gold);
  color: #0a0a0a;
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: #0a0a0a;
  transform: translateY(-2px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(rgba(10, 10, 10, 0.78), rgba(10, 10, 10, 0.85)),
    radial-gradient(circle at 30% 20%, #1c1c1c 0%, #0a0a0a 70%);
  background-size: cover;
  background-position: center;
  padding: 4rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.hero-home {
  min-height: 88vh;
}

.hero-content {
  max-width: 880px;
}

.hero .eyebrow {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.2rem;
  color: #fff;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2rem;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.8rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.service-card .icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: #fff;
}

.service-card p {
  flex-grow: 1;
}

.service-card .read-more {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* ---------- About ---------- */
.about-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.stat-row {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat .num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}

.stat .label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  padding: 2rem;
}

.testimonial .stars {
  color: var(--gold);
  margin-bottom: 0.8rem;
  letter-spacing: 2px;
}

.testimonial p {
  font-style: italic;
  color: var(--text);
  margin-bottom: 0;
}

/* ---------- Content / prose ---------- */
.prose {
  max-width: 820px;
  margin: 0 auto;
}

.prose h2 {
  color: #fff;
  margin-top: 2.5rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose ul {
  margin: 0 0 1.5rem 1.25rem;
  color: var(--text-muted);
}

.prose li {
  margin-bottom: 0.6rem;
}

.benefits-list {
  list-style: none;
  margin-left: 0 !important;
}

.benefits-list li {
  position: relative;
  padding-left: 1.8rem;
}

.benefits-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem 1.8rem;
  margin-bottom: 1.2rem;
}

.faq-item h3 {
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.faq-item p {
  margin-bottom: 0;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, #161208, #0a0a0a);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 4rem 1.5rem;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-band p {
  max-width: 560px;
  margin: 0 auto 1.8rem;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.4rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    repeating-linear-gradient(
      45deg,
      #141414,
      #141414 14px,
      #181818 14px,
      #181818 28px
    );
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}

.gallery-item:hover {
  border-color: var(--gold);
  transform: scale(1.02);
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item .tag {
  position: absolute;
  bottom: 0.8rem;
  left: 0.8rem;
  z-index: 2;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  background: rgba(10, 10, 10, 0.6);
}

/* ---------- Contact ---------- */
.contact-flex {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.3rem;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #0e0e0e;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.8rem 1rem;
  color: var(--text);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-info-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
}

.contact-info-box h3 {
  color: var(--gold);
}

.info-item {
  margin-bottom: 1.4rem;
}

.info-item .info-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.info-item .info-value {
  color: var(--text);
}

/* ---------- Map ---------- */
.map-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  filter: grayscale(0.3) contrast(1.05);
}

/* ---------- 404 ---------- */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem;
}

.error-page .code {
  font-family: 'Montserrat', sans-serif;
  font-size: 6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.error-page h1 {
  font-size: 2rem;
  color: #fff;
  margin: 1rem 0;
}

.error-page p {
  max-width: 520px;
  margin: 0 auto 2rem;
}

/* ---------- Footer ---------- */
.footer {
  background: #060606;
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer h4 {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer p,
.footer li {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer ul a {
  color: var(--text-muted);
}

.footer ul a:hover {
  color: var(--gold);
}

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav-toggle-label {
    display: block;
  }

  /* Keep logo + wordmark clear of the hamburger on narrow screens */
  .nav-logo img {
    height: 52px;
  }

  .nav-logo-text {
    font-size: 1.1rem;
  }

  .nav-links {
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #0d0d0d;
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .nav-toggle:checked ~ .nav-links {
    max-height: 600px;
  }

  .nav-links li {
    width: 100%;
    border-top: 1px solid var(--border);
  }

  .nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    width: 100%;
  }

  .nav-links .nav-cta {
    margin: 0.8rem 1.5rem;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .contact-flex {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.5rem 0;
  }

  h2 {
    font-size: 1.6rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }
}
