/* Reviews page — distinctive design, not generic AI slop */

:root {
  --brand: #1a3a5c;
  --brand-dark: #0f2a47;
  --accent: #e85d04;
  --accent-hover: #d45203;
  --dark: #1a1a1a;
  --gray: #6a6a6a;
  --light: #f5f5f5;
  --white: #ffffff;
  --border: #e2e2e2;
}

/* Hero */
.reviews-hero {
  position: relative;
  background: var(--brand-dark);
  color: var(--white);
  padding: 80px 24px 90px;
  overflow: hidden;
}
.reviews-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.reviews-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f0a500;
  margin-bottom: 16px;
}
.reviews-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}
.reviews-summary {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}
.reviews-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.reviews-score-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
}
.reviews-score-star {
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: #f0a500;
}
.reviews-score-count {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.reviews-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--brand-dark);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.reviews-cta:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

/* Big background text */
.reviews-hero-bg-text {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Instrument Serif', serif;
  font-size: clamp(8rem, 20vw, 16rem);
  font-weight: 400;
  color: rgba(255,255,255,0.03);
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* Reviews body */
.reviews-body {
  padding: 80px 24px;
  background: #faf9f7;
}
.reviews-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

/* Review card */
.review-item {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.review-item:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.review-item--featured {
  grid-column: span 2;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  padding: 40px;
  background: linear-gradient(135deg, #fff 0%, #f8f6f0 100%);
  border: 1px solid rgba(232, 93, 4, 0.12);
}
.review-quote-mark {
  position: absolute;
  top: 24px;
  left: 28px;
  font-family: 'Instrument Serif', serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(232, 93, 4, 0.12);
}
.review-stars {
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: #f0a500;
  margin-bottom: 14px;
  position: relative;
}
.review-item--featured .review-stars {
  font-size: 1.1rem;
}
.review-text {
  font-family: 'Satoshi', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #2a2a2a;
  margin-bottom: 24px;
  flex: 1;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-item--featured .review-meta {
  flex-direction: column;
  align-items: flex-start;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}
.review-location {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 2px;
}

/* CTA block */
.reviews-cta-block {
  background: var(--brand);
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
}
.reviews-cta-content {
  max-width: 480px;
  margin: 0 auto;
}
.reviews-cta-content h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
}
.reviews-cta-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 28px;
}
.reviews-google-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--brand);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.reviews-google-btn:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 700px) {
  .review-item--featured {
    grid-column: span 1;
    flex-direction: column;
  }
  .review-item--featured .review-meta {
    flex-direction: row;
  }
  .reviews-cta-block {
    padding: 40px 24px;
  }
}

/* Nav — reuse brand styling */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--brand); }
.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-hover); }

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 24px 30px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 40px;
}
.footer-brand .footer-logo {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.footer-tagline {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col-head {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.footer-col p, .footer-col a {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  line-height: 2;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}