:root {
  --black: #1a1414;
  --charcoal: #2b2222;
  --gold: #b8935f;
  --gold-light: #d9b98a;
  --blush: #f4ece6;
  --cream: #fbf7f3;
  --text: #2b2222;
  --muted: #6f6360;
  --radius: 14px;
  --max-width: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, h4, .logo, .footer-logo {
  font-family: 'Playfair Display', serif;
}

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

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

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

.center { text-align: center; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.section-sub {
  color: var(--muted);
  max-width: 560px;
  margin: 0.5rem auto 0;
}

/* Promo bar */
.promo-bar {
  background: var(--black);
  color: var(--gold-light);
  text-align: center;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
}
.promo-bar a { color: #fff; text-decoration: underline; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 243, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
}
.logo span { color: var(--gold); font-weight: 600; }

.nav {
  display: flex;
  gap: 2rem;
}
.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color 0.2s;
}
.nav a:hover { color: var(--gold); }

.header-cta { display: inline-block; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--black);
  display: block;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s;
}
.btn-primary {
  background: var(--black);
  color: #fff;
}
.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(184,147,95,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-outline:hover {
  background: var(--black);
  color: #fff;
}
.btn-lg { padding: 1.1rem 2.4rem; font-size: 1.05rem; }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--blush) 0%, var(--cream) 60%);
  padding: 5rem 0 4.5rem;
  text-align: center;
}
.hero-inner { max-width: 720px; margin: 0 auto; }
.hero h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 1.2rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 1.8rem;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  margin-bottom: 2rem;
  font-size: 0.9rem;
}
.stars { color: var(--gold); letter-spacing: 2px; }
.rating-text { color: var(--muted); }

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

/* Services */
.services { padding: 5rem 0; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.service-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.service-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--black); }
.service-card p { font-size: 0.9rem; color: var(--muted); }

/* About */
.about { background: var(--blush); padding: 5rem 0; }
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.about-text h2 { font-size: 2rem; margin-bottom: 1.2rem; color: var(--black); }
.about-text p { color: var(--muted); margin-bottom: 1.2rem; }

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.highlight-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.highlight-card h4 { color: var(--gold); font-size: 1.6rem; margin-bottom: 0.3rem; }
.highlight-card p { color: var(--muted); font-size: 0.9rem; }

/* Reviews */
.reviews { padding: 5rem 0; }
.reviews h2 { font-size: 2rem; margin-bottom: 2rem; color: var(--black); }
.review-summary {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  background: #fff;
  padding: 1.5rem 2.2rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  margin-bottom: 1.5rem;
}
.big-rating { font-size: 3rem; font-weight: 700; color: var(--black); font-family: 'Playfair Display', serif; }
.review-summary-text p { color: var(--muted); font-size: 0.9rem; }
.link-underline { display: block; color: var(--gold); font-weight: 600; text-decoration: underline; }

/* Location */
.location { background: var(--charcoal); color: #fff; padding: 5rem 0; }
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}
.location .eyebrow { color: var(--gold-light); }
.location h2 { color: #fff; margin-bottom: 1.5rem; font-size: 2rem; }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.8rem;
}
.hours-table td {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
}
.hours-table td:last-child { text-align: right; color: var(--gold-light); }

.contact-block p { margin-bottom: 0.6rem; font-size: 0.95rem; }
.contact-block a { text-decoration: underline; color: #fff; }

.location-map {
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
}

/* CTA final */
.cta-final {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  padding: 4.5rem 0;
  color: var(--black);
}
.cta-final h2 { font-size: 2rem; margin-bottom: 0.6rem; }
.cta-final p { margin-bottom: 1.8rem; color: rgba(0,0,0,0.65); }
.cta-final .btn-primary { background: var(--black); }

/* Footer */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  padding: 3rem 0 1.2rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { font-size: 1.3rem; color: #fff; margin-bottom: 0.5rem; }
.footer-logo span { color: var(--gold-light); }
.footer-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  padding-top: 1.2rem;
  color: rgba(255,255,255,0.4);
}

/* Sticky mobile call button */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black);
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-weight: 600;
  z-index: 200;
}

/* Responsive */
@media (max-width: 900px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner, .location-inner { grid-template-columns: 1fr; }
  .location-map { min-height: 260px; }
}

@media (max-width: 720px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.2rem;
    display: none;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .hero h1 { font-size: 2rem; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .sticky-call { display: block; }
  body { padding-bottom: 3.2rem; }
}

@media (max-width: 480px) {
  .service-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}
