/* ============================================================
   REVIEWS PAGE — Chris Guerriero
   ============================================================ */

/* ---- PROMO SPLIT (compact two-column section at top) ---- */
.reviews-promo {
  background: linear-gradient(180deg, #0d0a06 0%, #0a0a0a 100%);
  border-bottom: 1px solid rgba(212,175,55,0.12);
  padding: clamp(110px, 9vw, 140px) 0 clamp(36px, 4vw, 56px);
}

.reviews-promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.reviews-promo-panel {
  padding: clamp(28px, 2.5vw, 40px) clamp(28px, 3vw, 44px) clamp(24px, 2.5vw, 36px);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #181410;
  border: 1px solid rgba(212,175,55,0.35);
  border-top: 3px solid var(--accent);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 8px 60px rgba(0,0,0,0.7), 0 0 40px rgba(212,175,55,0.08);
}

.reviews-promo-label {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}

.reviews-promo-text {
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.7;
  color: rgba(255,255,255,0.68);
  max-width: 520px;
  flex: 1;
}

.reviews-promo-btn {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 17px 40px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
  margin-top: 4px;
}

.reviews-promo-btn:hover {
  background: rgba(212,168,83,0.08);
  transform: translateY(-2px);
}

.reviews-promo-btn--ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.reviews-promo-btn--ghost:hover {
  background: rgba(212,168,83,0.08);
  transform: translateY(-2px);
}

/* ---- PAGE HEADLINE ---- */
.reviews-headline-section {
  background: #000;
  padding: clamp(56px, 6vw, 80px) 0 clamp(48px, 5vw, 70px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.reviews-headline-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(212,175,55,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.reviews-main-headline {
  font-family: var(--font-heading);
  font-size: clamp(30px, 2.8vw, 48px);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.25;
  max-width: 1820px;
  margin: 0 auto;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ---- TESTIMONIALS GRID ---- */
.reviews-grid-section {
  background: #0a0a0a;
  padding: clamp(60px, 7vw, 90px) 0;
  border-top: 1px solid rgba(212,175,55,0.15);
}

.reviews-grid-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
  display: block;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 32px);
}

/* ---- TESTIMONIAL CARD ---- */
.review-card {
  background: #f0e4e4;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 320px;
  justify-content: space-between;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212,175,55,0.5);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}

/* Header: photo left, name/company right */
.review-card-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  color: #000000;
}

.review-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #D4A853;
  box-shadow: 0 0 0 3px rgba(212,168,83,0.18);
  flex-shrink: 0;
  display: block;
}

/* Placeholder initials circle */
.review-photo-initials {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #D4A853;
  border: 3px solid #D4A853;
  box-shadow: 0 0 0 3px rgba(212,168,83,0.18);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #000;
  text-transform: uppercase;
}

.review-card-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  min-height: 40px;
}

.review-name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.review-company {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  line-height: 1.35;
}

/* Quote body */
.review-quote {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: #000000;
  flex: 1;
}

.review-quote a {
  color: #B8873A;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: 15px;
  display: inline-block;
  margin-top: 8px;
}

.review-quote a:hover { opacity: 0.75; }

/* ---- VIDEO CASE STUDIES ---- */
.reviews-video-section {
  background: #111;
  padding: clamp(80px, 8vw, 120px) 0;
  text-align: center;
  border-top: 1px solid rgba(212,175,55,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.reviews-video-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.reviews-video-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}

.reviews-video-heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
}

.reviews-video-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: #000;
  padding: 17px 42px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.3s ease;
  margin-top: 8px;
}

.reviews-video-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

/* ---- DISCLAIMER ---- */
.reviews-disclaimer-section {
  background: #0a0a0a;
  padding: clamp(48px, 5vw, 70px) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.reviews-disclaimer {
  max-width: 900px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.85;
  color: var(--gray-400);
  text-align: center;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .reviews-promo-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .reviews-promo-btn {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
  }
  .reviews-main-headline {
    font-size: clamp(22px, 6vw, 34px);
  }
  .review-card-header {
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }
  .review-photo,
  .review-photo-initials {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
  }
  .review-photo-initials {
    font-size: 18px;
  }
  .review-card {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .logo-tagline {
    font-size: 9px;
    letter-spacing: 0.08em;
  }
}

/* ============================================================
   PAGE-LEVEL OVERRIDES
   ============================================================ */

/* Opt-in button: locked rule = gold bg, BLACK text */
.optin-btn {
  color: #000000;
}

/* Warren Phillips case study link: ensure visibility on #f0e4e4 card */
.review-quote a {
  font-weight: 600;
}
