/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  background-color: #000;
  color: #f5f5f5;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.site-header {
  background-color: #000;
  padding: 10px 0;
  border-bottom: 2px solid gold;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 60px;
  height: 60px;
  margin-right: 10px;
}

.brand-text h1 {
  font-size: 1.5rem;
  color: gold;
}

.brand-text p {
  font-size: 0.9rem;
  color: #ccc;
}

.nav a {
  margin-left: 15px;
  text-decoration: none;
  color: gold;
  font-weight: bold;
}

.nav a.btn {
  padding: 6px 12px;
  border: 1px solid gold;
  border-radius: 4px;
}

.nav a.btn.call {
  background: gold;
  color: #000;
}

.nav a.btn:hover {
  opacity: 0.8;
}

/* Hero */
.hero {
  padding: 50px 0;
  background: linear-gradient(to right, #000, #111);
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.hero-copy {
  flex: 1;
  min-width: 250px;
}

.hero-copy h2 {
  font-size: 2rem;
  color: gold;
  margin-bottom: 15px;
}

.hero-copy p {
  margin-bottom: 10px;
}

.hero-copy .cta .btn {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
}

.hero-copy .address {
  margin-top: 15px;
  font-style: italic;
}

.hero-media {
  flex: 1;
  text-align: center;
}

.hero-media img {
  max-width: 100%;
  border: 3px solid gold;
  border-radius: 8px;
}

/* Buttons */
.btn {
  padding: 8px 14px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
}

.btn.primary {
  background-color: gold;
  color: #000;
}

.btn.outline {
  border: 1px solid gold;
  color: gold;
}

.btn:hover {
  opacity: 0.85;
}

/* Offers */
.offers {
  padding: 40px 0;
}

.offers h2 {
  color: gold;
  text-align: center;
  margin-bottom: 20px;
}

.offer-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.offer-card {
  background: #111;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid gold;
  text-align: center;
  width: 200px;
}

.offer-card h3 {
  color: gold;
}

/* About */
.about {
  padding: 40px 0;
}

.about-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.about-copy {
  flex: 1;
}

.about-copy h2 {
  color: gold;
  margin-bottom: 15px;
}

.about-copy ul {
  margin-top: 10px;
  list-style: none;
}

.about-copy ul li::before {
  content: "✔";
  color: gold;
  margin-right: 8px;
}

.about-media {
  flex: 1;
  text-align: center;
}

.about-media img {
  max-width: 100%;
  border: 2px solid gold;
  border-radius: 8px;
}

/* Services */
.services {
  padding: 40px 0;
}

.services h2 {
  color: gold;
  text-align: center;
  margin-bottom: 20px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.service {
  background: #111;
  border: 1px solid gold;
  padding: 15px;
  border-radius: 8px;
}

.service h3 {
  color: gold;
  margin-bottom: 5px;
}

.service .price {
  color: #ccc;
  font-weight: bold;
}

.note {
  margin-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #bbb;
}

/* Hours */
.hours {
  padding: 40px 0;
}

.hours h2 {
  color: gold;
  text-align: center;
  margin-bottom: 20px;
}

.hours-list {
  list-style: none;
  max-width
