:root {
  --bg: #080508;
  --gold: #c41e3a;
  --gold-light: #e83a54;
  --text: #f0e8e8;
  --card-bg: #130d12;
  --border: rgba(196,30,58,0.25);
  --nav-h: 70px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(8,5,8,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 1000;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
  opacity: 0.85;
}

.nav-links a:hover { color: var(--gold); opacity: 1; }

.nav-cta {
  background: var(--gold);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  opacity: 1 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?w=1600&auto=format&fit=crop') center/cover no-repeat;
  padding: 0 1rem;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,5,8,0.7) 0%, rgba(8,5,8,0.5) 50%, rgba(8,5,8,0.85) 100%);
}

.hero-content { position: relative; z-index: 1; max-width: 780px; }

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: #fff;
}

.hero-sub {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 520px;
  margin: 0 auto 2rem;
}

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

.btn-primary {
  background: var(--gold);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
}

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

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.2s;
}

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

/* RATING BADGE */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(196,30,58,0.15);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.rating-badge .stars { color: #ffc107; }

/* SECTIONS */
section { padding: 5rem 1rem; }

.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

.section-sub {
  opacity: 0.75;
  max-width: 540px;
  margin-bottom: 3rem;
}

/* PHOTO STRIP */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 3rem 0;
}

.photo-strip img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
}

/* CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
}

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

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

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.card p { opacity: 0.8; font-size: 0.95rem; }

/* SERVICES GRID */
.services-section { padding: 5rem 1rem; }

.services-group-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
  margin: 2.5rem 0 1.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 0.2s;
}

.service-card:hover { border-color: var(--gold); }

.service-card .name { font-weight: 600; }
.service-card .price { color: var(--gold); font-weight: 700; font-size: 1.1rem; }

.walkin-note {
  background: rgba(196,30,58,0.1);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  padding: 1rem 1.5rem;
  margin-top: 2.5rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* PAGE HERO */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 1rem 4rem;
  text-align: center;
  position: relative;
  background: url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?w=1400&auto=format&fit=crop') center/cover no-repeat;
}

.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(8,5,8,0.82);
}

.page-hero-content { position: relative; z-index: 1; }

/* ABOUT TWO-COL */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.about-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.badge {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}

.badge .badge-icon { font-size: 1.5rem; margin-bottom: 0.4rem; }
.badge .badge-text { font-size: 0.85rem; font-weight: 600; color: var(--gold); }

/* REVIEWS */
.reviews-hero {
  text-align: center;
  padding: 4rem 1rem 2rem;
}

.big-score {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
}

.score-stars { color: #ffc107; font-size: 1.8rem; margin: 0.5rem 0; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
}

.review-stars { color: #ffc107; margin-bottom: 0.75rem; }

.review-text {
  font-style: italic;
  opacity: 0.85;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.review-author { font-weight: 700; color: var(--gold); font-size: 0.9rem; }

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

.hours-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.hours-table td { padding: 0.6rem 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.hours-table td:last-child { text-align: right; color: var(--gold); font-weight: 600; }

.map-wrap { margin-top: 1.5rem; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { display: block; width: 100%; height: 280px; border: none; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label { font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; opacity: 0.7; }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.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: 100px; }
.form-group select option { background: #1a0d12; }

/* FOOTER */
footer {
  background: #050305;
  border-top: 1px solid var(--border);
  padding: 2.5rem 1rem;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  list-style: none;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}

.footer-links a:hover { opacity: 1; color: var(--gold); }

.footer-copy { opacity: 0.5; font-size: 0.85rem; }

/* DIVIDER */
.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1rem 0 2rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .photo-strip { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-badges { grid-template-columns: 1fr 1fr; }
}
