@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --bg: #070809; --card: #101214; --surface: #161a1e; --border: #252a30;
  --gold: #b8860b; --gold-light: #d4a520; --gold-dark: #8b6508;
  --text: #e8e8e8; --muted: #888; --white: #ffffff;
  --ff-head: 'Playfair Display', serif; --ff-body: 'Inter', sans-serif;
  --radius: 8px; --transition: 0.22s ease;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--gold-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

h1, h2, h3, h4 { font-family: var(--ff-head); line-height: 1.2; }

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

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(7,8,9,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex; align-items: center;
  padding: 0 2rem;
}

.nav-inner {
  width: 100%; max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-brand {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

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

.nav-links a {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
}

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

.nav-cta {
  background: var(--gold);
  color: var(--bg) !important;
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.85rem;
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--bg) !important; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh; min-height: 580px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?w=1600');
  background-size: cover; background-position: center;
  filter: brightness(0.28);
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(7,8,9,0.15) 0%, rgba(7,8,9,0.65) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 740px; padding: 0 1.5rem;
}

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

.hero-title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.hero-title span { color: var(--gold-light); }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(232,232,232,0.78);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-weight: 300;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(184,134,11,0.4);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold-light);
  margin-left: 1rem;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-2px);
}

/* ── RATING BADGE ── */
.rating-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(184,134,11,0.15);
  border: 1px solid rgba(184,134,11,0.35);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.88rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.stars { color: var(--gold-light); letter-spacing: 0.05em; font-size: 0.9rem; }

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

.photo-strip-item {
  overflow: hidden;
  position: relative;
}

.photo-strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.photo-strip-item:hover img { transform: scale(1.06); }

/* ── SECTIONS ── */
.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-full {
  padding: 5rem 2rem;
  background: var(--surface);
}

.section-full .section {
  padding: 0;
}

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

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.7;
}

.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ── WHY CARDS ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: border-color var(--transition), transform var(--transition);
}

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

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

.why-card h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.why-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.65; }

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

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition);
}

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

.service-card-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }

.service-card h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.service-card p { color: var(--muted); font-size: 0.9rem; flex: 1; line-height: 1.6; }

.service-price {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1.3rem;
  font-family: var(--ff-head);
  font-weight: 700;
  color: var(--gold-light);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  padding-top: 64px;
  height: 340px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?w=1400');
  background-size: cover; background-position: center 30%;
  filter: brightness(0.22);
}

.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(7,8,9,0.1) 0%, rgba(7,8,9,0.7) 100%);
}

.page-hero-content {
  position: relative; z-index: 2;
  padding: 0 1.5rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.page-hero p {
  color: rgba(232,232,232,0.7);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ── REVIEW CARDS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

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

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

.review-stars { color: var(--gold-light); font-size: 1rem; margin-bottom: 0.75rem; }

.review-text {
  color: var(--text);
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 1.1rem;
  font-style: italic;
}

.reviewer {
  display: flex; align-items: center; gap: 0.75rem;
}

.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg);
  flex-shrink: 0;
}

.reviewer-name { font-weight: 600; font-size: 0.9rem; color: var(--white); }
.reviewer-date { font-size: 0.78rem; color: var(--muted); }

/* ── SCORE HERO ── */
.score-hero {
  text-align: center;
  padding: 3.5rem 2rem;
  background: linear-gradient(135deg, rgba(184,134,11,0.12) 0%, rgba(7,8,9,0) 60%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 3rem;
}

.score-number {
  font-family: var(--ff-head);
  font-size: 5rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.score-stars { font-size: 1.5rem; color: var(--gold-light); margin-bottom: 0.5rem; }
.score-label { color: var(--muted); font-size: 0.95rem; }

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

.about-image-col { position: relative; }

.about-image-primary {
  width: 100%; height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.about-image-secondary {
  position: absolute;
  bottom: -2rem; right: -1.5rem;
  width: 55%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 3px solid var(--bg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}

.about-text-col { padding-left: 1rem; }

.about-badges {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-top: 2rem;
}

.badge {
  background: rgba(184,134,11,0.15);
  border: 1px solid rgba(184,134,11,0.3);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.location-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.location-card h3 {
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.location-card p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

.location-card a { color: var(--gold-light); }

.hours-table { width: 100%; margin-top: 0.5rem; }
.hours-table td {
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.hours-table td:first-child { color: var(--text); font-weight: 500; width: 55%; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}

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

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

/* ── DIVIDER ── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── FOOTER ── */
footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.footer-tagline { color: var(--muted); font-size: 0.88rem; line-height: 1.6; }

.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: var(--text); font-size: 0.9rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-col p { color: var(--muted); font-size: 0.88rem; line-height: 1.7; }

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ── GOLD LINE ACCENT ── */
.gold-line {
  width: 48px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}

.gold-line.centered { margin: 1rem auto 1.5rem; }

/* ── DEMO BANNER ── */
.demo-banner {
  background: var(--gold-dark);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
  position: relative; z-index: 200;
}

.demo-banner strong { color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-secondary { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .photo-strip { height: 180px; }
  .nav-links { display: none; }
  .hero-title { font-size: 2.4rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .btn-outline { margin-left: 0; margin-top: 0.75rem; }
  .hero-content .btn { display: block; width: 100%; max-width: 280px; margin: 0 auto 0.75rem; }
}
