/* ── Hero ── */
.hero {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  opacity: 0.6;
}
/* Gradient ensures text is always readable over the image */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,13,13,0.75) 0%,
    rgba(13,13,13,0.45) 55%,
    rgba(13,13,13,0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero h1 { margin-bottom: var(--sp-sm); color: var(--white); }
.hero p { font-size: 1.15rem; color: var(--grey-light); margin-bottom: var(--sp-lg); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--sp-sm); }
.hero .btn-primary { color: var(--black); }

/* ── Card image ── */
.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ── About grid ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}
.about-text p { margin-bottom: var(--sp-md); color: var(--grey-mid); }
.about-text strong { color: var(--black); }
.about-image img { border-radius: var(--radius); box-shadow: 0 4px 24px rgba(0,0,0,0.12); }

.about-video {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.about-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Location grid ── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}
.location-info h2 { color: var(--white); margin-bottom: var(--sp-md); }
.location-info p { color: var(--grey-light); margin-bottom: var(--sp-sm); }
.location-info a { color: var(--gold); }
.location-info .btn-primary { color: var(--black); }

@media (max-width: 768px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .hero { min-height: 400px; padding: 3rem 0; }
}

/* ── Reviews summary row ── */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--sp-lg);
  flex-wrap: wrap;
}

.reviews-score {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

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

.reviews-count {
  font-size: 0.9rem;
  color: var(--grey-mid);
}

/* ── Reviews carousel ── */
.reviews-carousel {
  overflow: hidden;
  margin-bottom: var(--sp-lg);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

@keyframes reviews-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.reviews-track {
  display: flex;
  gap: var(--sp-lg);
  width: max-content;
  animation: reviews-scroll 45s linear infinite;
}

.reviews-track:hover { animation-play-state: paused; }

.reviews-loading {
  color: var(--grey-mid);
  font-size: 0.9rem;
}

/* ── Review card ── */
.review-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: var(--sp-lg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  width: 320px;
  flex-shrink: 0;
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-card-header .review-stars {
  font-size: 1.1rem;
  margin-left: auto;
  flex-shrink: 0;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-avatar--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 1.1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}

.review-name {
  display: block;
  font-size: 0.95rem;
  color: var(--black);
}

.review-date {
  display: block;
  font-size: 0.78rem;
  color: var(--grey-mid);
}

.review-text {
  font-size: 0.9rem;
  color: var(--grey-mid);
  line-height: 1.6;
  font-style: italic;
}

/* ── Google link ── */
.reviews-google-link {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--grey-mid);
  border-bottom: 1px solid var(--grey-light);
  padding-bottom: 0.1em;
}

.reviews-google-link:hover {
  color: var(--gold-dark);
  text-decoration: none;
  border-bottom-color: var(--gold-dark);
}
