/* Homepage — hero, value strip, service teaser.
   Shared components live in global.css; nothing here may redefine one. */

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: min(92vh, 46rem);
  background: var(--grad-spotlight);
}

/* The photograph is atmosphere, not content: it sits at low opacity under a
   veil so the gold headline keeps its contrast ratio. */
.hero__media {
  position: absolute;
  inset: 0;
  opacity: 0.25;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.55) 0%,
    rgba(10, 10, 10, 0.9) 70%,
    var(--surface) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: var(--space-2xl);
  max-width: 56rem;
}

.hero__kicker {
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--step-6);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-md);
}

.hero__lede {
  font-size: var(--step-1);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 40rem;
  margin: 0 auto var(--space-lg);
}

/* Service teaser cards */

.service-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.service-card__price {
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-weight: 700;
  line-height: 1;
}

.service-card__name {
  font-size: var(--step-1);
  font-weight: 600;
  margin-bottom: var(--space-2xs);
}

.section__foot {
  margin-top: var(--space-lg);
}

/* Value strip.
   Replaces the old three-stat row: two of those three were em-dash
   placeholders for figures the client never supplied, which read as broken
   rather than as restraint. These six claims are the shop's own, taken from
   its Back to School poster. */
.values {
  /* 20rem, not 16rem: at 16rem the six cards lay out 4+2 on a wide desktop and
     the trailing pair hangs at the left edge. 20rem caps it at three columns,
     so six items are always a clean 3+3 or 2+2+2. */
  grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr));
}

.values__item {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.values__title {
  font-size: var(--step-1);
  font-weight: 600;
}

/* Google review quotes.
   An explicit 1 / 2 column grid, never auto-fit: four cards must always land
   2+2 (or stacked), and auto-fit at three columns would strand a fourth card
   alone on its own row. */
.reviews {
  display: grid;
  gap: var(--space-md);
  /* minmax(0, 1fr), never a bare 1fr: 1fr carries an auto (min-content)
     minimum, so one long token in a quote widens the track past the
     container. Quotes are verbatim and cannot be reworded to fit. */
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 48rem) {
  .reviews {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

.review {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.review__stars {
  color: var(--gold);
  font-size: var(--step-1);
  letter-spacing: 0.35em;
}

.review__quote p {
  color: var(--text-muted);
  font-size: var(--step-0);
  line-height: 1.65;
  /* Reviewers write tokens no line box can hold ("atmosphere/camaraderie,"
     is 195px in a 175px column at 320px wide). The text is quoted verbatim,
     so the break has to come from CSS. */
  overflow-wrap: break-word;
}

.review__footer {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-top: auto;
  padding-top: var(--space-xs);
}

.review__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid var(--rule-bright);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
}

.review__name {
  font-weight: 600;
}

.review__source {
  color: var(--text-dim);
  font-size: var(--step--1);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
}

.review__source:hover {
  color: var(--gold-light);
}
