/* ============================================================
   OLYMPIA — HERO UPGRADE + REVIEWS
   ============================================================ */

/* ── HERO: OLYMPIA BIGGER ── */
.hero-brand-name {
  font-size: clamp(4rem, 18vw, 11rem) !important;
  letter-spacing: 0.08em !important;
  line-height: 0.92 !important;
}
/* On mobile: fill the screen width */
@media (max-width: 480px) {
  .hero-brand-name {
    font-size: clamp(3.8rem, 19vw, 5.5rem) !important;
    letter-spacing: 0.05em !important;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .hero-brand-name { font-size: clamp(4.5rem, 16vw, 7rem) !important; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-brand-name { font-size: clamp(5rem, 12vw, 8rem) !important; }
}
@media (min-width: 1025px) {
  .hero-brand-name { font-size: clamp(6rem, 9vw, 11rem) !important; }
}

/* Subtitle slightly bigger too for better proportion */
.hero-brand-sub {
  font-size: clamp(1rem, 3.2vw, 2rem) !important;
  letter-spacing: 0.08em !important;
  margin-top: 8px !important;
}

/* Hero title tighter gap */
.hero-brand-wrap { margin-bottom: 6px !important; }

/* Stack CTA buttons on mobile */
@media (max-width: 540px) {
  .hero-actions {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }
  .btn-hero-primary,
  .btn-hero-secondary {
    width: auto !important;
    min-width: 200px !important;
  }
}

/* ── REVIEWS SECTION ── */
@keyframes reviewIn {
  from { opacity:0; transform:translateY(22px) scale(0.97); }
  to   { opacity:1; transform:none; }
}

.reviews-section {
  padding: 80px 0;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(201,168,76,0.06) 0%, transparent 55%),
    linear-gradient(180deg, #0d0d0d 0%, #111 50%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
}
.reviews-section::before {
  content:'';
  position:absolute; top:0; left:8%; right:8%; height:1px;
  background:linear-gradient(90deg,transparent,rgba(201,168,76,0.22),transparent);
}
.reviews-section::after {
  content:'';
  position:absolute; bottom:0; left:8%; right:8%; height:1px;
  background:linear-gradient(90deg,transparent,rgba(201,168,76,0.12),transparent);
}

/* Grid: 3-col desktop */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.reviews-3 { grid-template-columns: repeat(3, 1fr) !important; }

/* ── REVIEW CARD ── */
.review-card {
  background:
    radial-gradient(ellipse at 5% 0%, rgba(201,168,76,0.09) 0%, transparent 55%),
    linear-gradient(160deg, #191915 0%, #111 100%);
  border: 1px solid rgba(201,168,76,0.13);
  border-radius: 8px;
  padding: 26px 22px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.03);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), border-color 0.3s ease, box-shadow 0.4s ease;
  animation: reviewIn 0.6s cubic-bezier(0.22,1,0.36,1) both;
}
/* Gold top edge */
.review-card::before {
  content:'';
  position:absolute; top:0; left:0; right:0; height:1px;
  background:linear-gradient(90deg,rgba(201,168,76,0.55),rgba(201,168,76,0.15),transparent);
}
.review-card:nth-child(1) { animation-delay: 0.05s; }
.review-card:nth-child(2) { animation-delay: 0.13s; }
.review-card:nth-child(3) { animation-delay: 0.21s; }
.review-card:nth-child(4) { animation-delay: 0.29s; }
.review-card:nth-child(5) { animation-delay: 0.37s; }
.review-card:nth-child(6) { animation-delay: 0.45s; }

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,168,76,0.28);
  box-shadow: 0 12px 36px rgba(0,0,0,0.5), 0 0 20px rgba(201,168,76,0.07);
}

/* Decorative quote */
.review-quote {
  position: absolute;
  top: 12px; right: 16px;
  font-family: Georgia, serif;
  font-size: 3.8rem;
  line-height: 1;
  color: rgba(201,168,76,0.1);
  pointer-events: none;
  user-select: none;
}

/* Stars */
.review-stars {
  color: #e2c46e;
  font-size: 0.88rem;
  letter-spacing: 2px;
  text-shadow: 0 0 8px rgba(201,168,76,0.35);
}

/* Text */
.review-text {
  font-size: 0.87rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  flex: 1;
  margin: 0;
}

/* Author */
.review-author {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: auto;
}
.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,76,0.25), rgba(201,168,76,0.08));
  border: 1px solid rgba(201,168,76,0.28);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(201,168,76,0.85);
  flex-shrink: 0;
}
.review-name {
  font-size: 0.82rem; font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.review-loc {
  font-size: 0.68rem;
  color: rgba(201,168,76,0.58);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* Tablet: 2-col */
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
  .reviews-3    { grid-template-columns: repeat(2, 1fr) !important; }
}
/* Mobile: 1-col */
@media (max-width: 560px) {
  .reviews-section { padding: 52px 0; }
  .reviews-grid,
  .reviews-3 { grid-template-columns: 1fr !important; gap: 8px; }
  .review-card { padding: 20px 16px 18px; }
  .review-card:hover { transform: none; }
  .review-card:active { transform: scale(0.98); box-shadow: 0 0 0 1px rgba(201,168,76,0.3); }
  .review-text { font-size: 0.83rem; }
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM AREAS SECTION
   ═══════════════════════════════════════════════════════════ */

@keyframes ringPulse {
  0%,100% { transform:translate(-50%,-50%) scale(1);   opacity:0.5; }
  50%      { transform:translate(-50%,-50%) scale(1.7); opacity:0; }
}
@keyframes dotPop {
  from { opacity:0; transform:translate(-50%,-50%) scale(0.5); }
  to   { opacity:1; transform:translate(-50%,-50%) scale(1); }
}

/* ── SECTION ── */
.areas-premium {
  padding: 88px 0 !important;
  background:
    radial-gradient(ellipse at 60% 50%, rgba(201,168,76,0.07) 0%, transparent 55%),
    linear-gradient(180deg, #0c0c0c 0%, #101010 100%) !important;
  position: relative !important;
  overflow: hidden !important;
  border-top: 1px solid rgba(201,168,76,0.08) !important;
}

/* Subtle grid bg */
.areas-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at 60% 50%, rgba(0,0,0,0.55) 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 50%, rgba(0,0,0,0.55) 0%, transparent 65%);
  pointer-events: none;
}

/* ── TWO-COLUMN LAYOUT ── */
.areas-premium-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 48px;
}

/* ── LEFT CONTENT ── */
.areas-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.areas-eyebrow-line {
  flex: 0 0 28px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.45));
}
.areas-eyebrow-line:last-child {
  background: linear-gradient(90deg, rgba(201,168,76,0.45), transparent);
}

.areas-title {
  font-family: var(--font-display) !important;
  font-size: clamp(2rem, 4vw, 3.2rem) !important;
  font-weight: 400 !important;
  line-height: 1.15 !important;
  margin-bottom: 20px !important;
  color: rgba(255,255,255,0.92) !important;
}
.areas-title-city {
  font-style: italic !important;
  background: linear-gradient(135deg, #c9a84c, #f0d878, #b8922e) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
.areas-title-and {
  font-size: 0.72em !important;
  font-weight: 300 !important;
  color: rgba(255,255,255,0.65) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.65) !important;
}
.areas-desc {
  font-size: 0.92rem !important;
  color: rgba(255,255,255,0.48) !important;
  line-height: 1.76 !important;
  margin-bottom: 28px !important;
  max-width: 480px !important;
}

/* Coverage card */
.areas-coverage-card {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 8px;
  padding: 12px 18px;
  margin-bottom: 28px;
}
.areas-coverage-icon-wrap {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,76,0.25), rgba(201,168,76,0.08));
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.areas-coverage-title {
  font-size: 0.85rem; font-weight: 600;
  color: rgba(255,255,255,0.88);
}
.areas-coverage-sub {
  font-size: 0.7rem; color: rgba(201,168,76,0.62);
  letter-spacing: 0.06em; margin-top: 2px;
}

/* CTA strip */
.areas-cta-strip {
  background:
    linear-gradient(135deg, rgba(201,168,76,0.1) 0%, rgba(201,168,76,0.03) 100%);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  padding: 20px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.areas-cta-heading {
  font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.85);
  margin-bottom: 4px;
}
.areas-cta-sub {
  font-size: 0.76rem; color: rgba(255,255,255,0.4); line-height: 1.5;
}
.areas-cta-btn {
  flex-shrink: 0 !important;
  white-space: nowrap !important;
  font-size: 0.75rem !important;
  padding: 10px 20px !important;
  border-radius: 4px !important;
}

/* ── RIGHT: MAP VISUAL ── */
.areas-map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(201,168,76,0.07) 0%, transparent 55%),
    linear-gradient(160deg, #181814 0%, #111 100%);
  border: 1px solid rgba(201,168,76,0.14);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.55), 0 0 0 1px rgba(201,168,76,0.08);
}

/* Inner grid texture */
.areas-map-texture {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

/* Coverage circle (dashed ring) */
.areas-coverage-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72%; height: 72%;
  border-radius: 50%;
  border: 1.5px dashed rgba(201,168,76,0.25);
  pointer-events: none;
}

/* City dots */
.areas-dot {
  position: absolute;
  transform: translate(-50%, -50%);
  animation: dotPop 0.5s cubic-bezier(0.22,1,0.36,1) both;
}
.areas-dot:nth-child(3)  { animation-delay: 0.1s; }
.areas-dot:nth-child(4)  { animation-delay: 0.18s; }
.areas-dot:nth-child(5)  { animation-delay: 0.26s; }
.areas-dot:nth-child(6)  { animation-delay: 0.34s; }
.areas-dot:nth-child(7)  { animation-delay: 0.42s; }
.areas-dot:nth-child(8)  { animation-delay: 0.50s; }
.areas-dot:nth-child(9)  { animation-delay: 0.58s; }
.areas-dot:nth-child(10) { animation-delay: 0.66s; }
.areas-dot::before {
  content: '';
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(201,168,76,0.6);
  box-shadow: 0 0 8px rgba(201,168,76,0.4);
}
.areas-dot-label {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  font-size: 0.62rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

/* Center pin — Atlanta */
.areas-center-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  z-index: 3;
}
.areas-pin-body {
  width: 36px; height: 44px;
  background: linear-gradient(135deg, #c9a84c, #e2c46e);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(201,168,76,0.45);
  position: relative; z-index: 2;
}
.areas-pin-inner {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #0f0f0f;
  transform: rotate(45deg);
}
.areas-pin-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,0.4);
  animation: ringPulse 2.6s ease-out infinite;
}
.areas-pin-ring.r1 { width: 44px; height: 44px; animation-delay: 0s; }
.areas-pin-ring.r2 { width: 64px; height: 64px; animation-delay: 1.3s; }
.areas-pin-label {
  position: absolute;
  top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: rgba(8,8,8,0.85);
  border: 1px solid rgba(201,168,76,0.35);
  color: rgba(255,255,255,0.88);
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px;
  white-space: nowrap;
  backdrop-filter: blur(6px);
}

/* ── CITY TAGS ROW ── */
.areas-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 32px;
  border-top: 1px solid rgba(201,168,76,0.08);
}

/* ── TABLET ── */
@media (max-width: 900px) {
  .areas-premium-layout {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .areas-map-frame {
    max-width: 420px !important;
    margin: 0 auto !important;
    aspect-ratio: 4/3 !important;
  }
  .areas-cta-strip {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}

/* ── MOBILE ── */
@media (max-width: 560px) {
  .areas-premium { padding: 56px 0 !important; }
  .areas-title { font-size: clamp(1.6rem, 7vw, 2.2rem) !important; }
  .areas-cta-btn { width: 100% !important; text-align: center !important; }
  .areas-dot-label { display: none; }
  .areas-coverage-card { flex-direction: column !important; text-align: center !important; }
}

/* ═══════════════════════════════════════════════════════════
   SERVICE CARDS — SCROLL-ONLY ACTIVATION
   No hover triggers. Smooth scroll-in reveal for all screens.
   ═══════════════════════════════════════════════════════════ */

@keyframes svcCardReveal {
  from {
    opacity: 0.55;
    transform: translateY(18px);
    filter: brightness(0.7);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: brightness(1);
  }
}

/* Base state — slightly dimmed before activation */
.svc-photo-card {
  opacity: 0.6;
  transform: translateY(14px);
  transition:
    opacity 0.55s cubic-bezier(0.22,1,0.36,1),
    transform 0.55s cubic-bezier(0.22,1,0.36,1),
    box-shadow 0.5s ease,
    border-color 0.4s ease !important;
  will-change: opacity, transform;
}
.svc-photo-card .svc-photo-img-wrap img {
  filter: brightness(0.7) saturate(0.85) !important;
  transition: filter 0.55s ease, transform 0.65s cubic-bezier(0.22,1,0.36,1) !important;
}

/* ACTIVE: scroll triggers this */
.svc-photo-card.svc-in-view {
  opacity: 1 !important;
  transform: translateY(0) !important;
  background:
    linear-gradient(#141410, #111108) padding-box,
    linear-gradient(135deg, rgba(201,168,76,0.7), rgba(201,168,76,0.18), rgba(201,168,76,0.5)) border-box !important;
  border: 1px solid transparent !important;
  box-shadow:
    0 10px 36px rgba(0,0,0,0.6),
    0 0 24px rgba(201,168,76,0.09),
    0 0 0 1px rgba(201,168,76,0.22) !important;
}
.svc-photo-card.svc-in-view .svc-photo-img-wrap img {
  filter: brightness(0.9) saturate(1.05) !important;
  transform: scale(1.03) !important;
}
.svc-photo-card.svc-in-view .svc-photo-body {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 55%),
    linear-gradient(180deg, #141412 0%, #0f0f0e 100%) !important;
}
.svc-photo-card.svc-in-view .svc-learn-link {
  color: rgba(201,168,76,0.8) !important;
}
/* Gold line at bottom of image draws in */
.svc-photo-card.svc-in-view .svc-photo-img-wrap::after {
  width: 100% !important;
}

/* REMOVE all hover effects — scroll is the interaction */
.svc-photo-card:hover {
  transform: translateY(0) !important;
  box-shadow: inherit !important;
}
.svc-photo-card:hover .svc-photo-img-wrap img {
  transform: none !important;
}
/* Mobile tap feedback only */
@media (max-width: 768px) {
  .svc-photo-card:active {
    transform: scale(0.98) !important;
    box-shadow: 0 0 0 2px rgba(201,168,76,0.4) !important;
  }
}

/* Perf: reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .svc-photo-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .svc-photo-card .svc-photo-img-wrap img { filter: brightness(0.82) !important; }
}
