/* Allan's Paint & Body of Lexington — Pitch Demo */
:root {
  --bg: #09070a;
  --bg2: #120d14;
  --bg3: #1a1220;
  --gold: #e05a04;
  --gold-light: #f07020;
  --text: #f5f0ee;
  --text-muted: #c0b0a8;
  --border: rgba(224,90,4,0.18);
  --radius: 10px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

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

.nav-brand {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-light);
  text-decoration: none;
  letter-spacing: 0.01em;
}

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

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

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

.nav-cta {
  background: var(--gold);
  color: #fff !important;
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(9,7,10,0.5) 0%, rgba(9,7,10,0.72) 100%),
              url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?w=1200&auto=format&fit=crop') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 1.5rem 4rem;
}

.hero-inner { max-width: 820px; }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1.4rem;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  font-weight: 900;
  line-height: 1.13;
  color: #fff;
  margin-bottom: 1.2rem;
}

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

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 2.2rem;
}

.btn-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--text);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid var(--border);
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }

/* ── RATING BADGE ────────────────────────────────────────────── */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 0.5rem 1.2rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 1.8rem;
}

.rating-badge .stars { letter-spacing: 0.05em; }
.rating-badge .source { color: var(--text-muted); font-weight: 400; font-size: 0.82rem; }

/* ── SECTION SHELL ───────────────────────────────────────────── */
section { padding: 5rem 1.5rem; }
.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1rem;
}
.section-subtitle {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 3rem;
  text-align: center;
}
.container { max-width: 1100px; margin: 0 auto; }
.text-center { text-align: center; }

/* ── PHOTO STRIP ─────────────────────────────────────────────── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 1.5rem 4rem;
}

.photo-strip img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

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

.why-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
}

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

.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
}

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
  padding-top: 64px;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(rgba(9,7,10,0.55) 0%, rgba(9,7,10,0.88) 100%),
              url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1200&auto=format&fit=crop') center/cover no-repeat;
}

.page-hero-inner {
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.page-hero p { color: var(--text-muted); font-size: 1rem; }

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

.service-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}

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

.service-icon {
  font-size: 2rem;
  margin-bottom: 0.9rem;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.two-col img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
}

.two-col-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.2rem;
  line-height: 1.25;
}

.two-col-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.8rem;
}

.badge {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* ── REVIEWS ─────────────────────────────────────────────────── */
.score-hero {
  text-align: center;
  padding: 4rem 1.5rem 3rem;
  background: var(--bg2);
}

.score-hero .big-score {
  font-family: var(--font-head);
  font-size: 6rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.score-hero .stars-lg { font-size: 2rem; margin-bottom: 0.5rem; }
.score-hero .score-source { color: var(--text-muted); font-size: 1rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 0.7rem; }
.review-text { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 1rem; font-style: italic; }
.review-author { font-weight: 600; color: var(--text); font-size: 0.88rem; }
.review-platform { color: var(--text-muted); font-size: 0.78rem; margin-top: 0.2rem; }

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

.info-block { margin-bottom: 2rem; }
.info-block h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}
.info-block p, .info-block a {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-decoration: none;
}
.info-block a:hover { color: var(--gold-light); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr td {
  padding: 0.35rem 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(224,90,4,0.08);
}
.hours-table tr td:first-child { font-weight: 600; color: var(--text); padding-right: 1.5rem; }

.map-embed { border-radius: var(--radius); overflow: hidden; margin-top: 1rem; }
.map-embed iframe { display: block; width: 100%; height: 220px; border: 0; }

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

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

label { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.3rem; display: block; }

input, select, textarea {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.7rem 1rem;
  transition: border-color 0.2s;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
}

textarea { resize: vertical; min-height: 100px; }
select option { background: var(--bg2); }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
}

footer .footer-brand {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

footer a {
  color: var(--text-muted);
  text-decoration: none;
  margin: 0 0.6rem;
  transition: color 0.2s;
}
footer a:hover { color: var(--gold-light); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .photo-strip { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
