:root {
  --charcoal: #232323;
  --charcoal-2: #2f2f2f;
  --grey: #58595b;
  --gold: #a9863f;
  --gold-light: #c9a566;
  --off-white: #f6f5f2;
  --white: #ffffff;
  --radius: 6px;
  --shadow: 0 10px 30px rgba(0,0,0,0.15);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Oswald', sans-serif;
  color: var(--charcoal);
  background: var(--off-white);
  line-height: 1.6;
}

h1, h2, h3, .brand-text, .stat-num {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  letter-spacing: 1px;
  margin: 0;
}

a { color: inherit; text-decoration: none; }

.section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 24px;
}

.kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.kicker.light { color: var(--gold-light); }

/* Topbar */
.topbar {
  background: var(--charcoal);
  color: #d8d8d8;
  font-size: 0.85rem;
  text-align: center;
  padding: 8px 16px;
}
.topbar a { color: var(--gold-light); font-weight: 500; }
.topbar .divider { margin: 0 10px; color: #555; }

/* Header */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.brand-logo { height: 46px; width: 46px; object-fit: contain; }
.brand-text {
  font-size: 1.5rem;
  color: var(--charcoal);
}
.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--charcoal);
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--gold); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--charcoal);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s, color 0.2s;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover { background: #93712f; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.nav-cta { padding: 10px 20px; font-size: 0.8rem; }

/* Hero */
.hero {
  background: radial-gradient(circle at top, var(--charcoal-2) 0%, var(--charcoal) 70%);
  color: var(--white);
  text-align: center;
  padding: 70px 24px 90px;
  position: relative;
}
.hero-inner { max-width: 780px; margin: 0 auto; }
.hero-logo {
  width: 130px;
  height: 130px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.4));
}
.eyebrow {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.1rem;
  color: #d6d6d6;
  max-width: 600px;
  margin: 0 auto 34px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #d6d6d6;
  font-size: 0.95rem;
}
.stars { color: var(--gold-light); letter-spacing: 2px; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-copy h2 { font-size: 2.4rem; margin-bottom: 18px; }
.about-copy p { color: #444; margin-bottom: 16px; }
.about-stats {
  display: grid;
  gap: 20px;
}
.stat {
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.stat-num { font-size: 2.2rem; color: var(--charcoal); }
.stat-label { text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem; color: var(--grey); }

/* Features */
.features { background: var(--charcoal); color: var(--white); }
.features h2 { font-size: 2.4rem; margin-bottom: 40px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 26px;
}
.feature-card {
  background: var(--charcoal-2);
  border: 1px solid #3d3d3d;
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: transform 0.2s, border-color 0.2s;
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.feature-icon { font-size: 1.8rem; margin-bottom: 14px; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 10px; font-family: 'Oswald', sans-serif; letter-spacing: 0; }
.feature-card p { color: #bcbcbc; font-size: 0.95rem; margin: 0; }

/* Hours */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hours-copy h2 { font-size: 2.2rem; margin-bottom: 14px; }
.hours-copy p { color: #444; margin-bottom: 26px; }
.hours-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}
.hours-table td {
  padding: 18px 26px;
  border-bottom: 1px solid #eee;
  font-weight: 500;
}
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:last-child { text-align: right; color: var(--gold); font-weight: 600; }

/* Reviews */
.reviews { background: var(--charcoal); color: var(--white); text-align: center; }
.reviews h2 { font-size: 2.4rem; margin-bottom: 18px; }
.review-score {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  color: #d6d6d6;
  margin-bottom: 44px;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  text-align: left;
}
.review-card {
  background: var(--charcoal-2);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid #3d3d3d;
}
.review-card .stars { display: block; margin-bottom: 12px; }
.review-card p { color: #d6d6d6; margin: 0; font-style: italic; }
.review-disclaimer { color: #777; font-size: 0.8rem; margin-top: 30px; }

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: stretch;
}
.location-copy h2 { font-size: 2.2rem; margin-bottom: 20px; }
.location-copy p { margin-bottom: 20px; color: #444; }
.location-copy .btn { margin-top: 6px; }
.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--gold) 0%, #8a6b32 100%);
  color: var(--white);
  text-align: center;
}
.cta h2 { font-size: 2.4rem; margin-bottom: 12px; }
.cta p { margin-bottom: 30px; color: #fff3e0; }
.cta .btn-outline { border-color: var(--white); color: var(--white); }
.cta .btn-outline:hover { background: var(--white); color: var(--gold); }
.cta .btn-primary { background: var(--charcoal); }
.cta .btn-primary:hover { background: #111; }

/* Footer */
.site-footer { background: var(--charcoal); color: #999; text-align: center; }
.footer-inner { padding: 40px 24px; }
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 1px;
}
.footer-logo { height: 34px; width: 34px; object-fit: contain; }
.site-footer p { margin: 4px 0; font-size: 0.9rem; }
.footer-copy { color: #666; font-size: 0.8rem; margin-top: 10px; }

/* Mobile call bar */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gold);
  color: var(--white);
  text-align: center;
  padding: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 200;
  box-shadow: 0 -4px 14px rgba(0,0,0,0.2);
}

@media (max-width: 860px) {
  .main-nav, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    gap: 16px;
  }
  .about-grid, .hours-grid, .location-grid { grid-template-columns: 1fr; }
  .topbar { display: flex; flex-direction: column; gap: 2px; }
  .topbar .divider { display: none; }
  body { padding-bottom: 56px; }
  .mobile-call-bar { display: block; }
}
