/* Results page — rebuilt on css/index.css */

/* ─── 1. Hero (split editorial) ─── */
.results-hero {
  padding: clamp(80px, 9vw, 112px) var(--section-x);
  background: var(--cream);
  border-bottom: 1px solid var(--hair);
}

.results-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.results-hero__copy {
  min-width: 0;
}

.results-hero .eyebrow {
  margin-bottom: 20px;
}

.results-hero h1 {
  margin: 0 0 24px;
  font-family: var(--font-serif);
  font-size: clamp(40px, 4.6vw, 60px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--ink);
  text-align: left;
}

.results-hero h1 em {
  font-style: italic;
  color: var(--terra);
}

.results-hero__sub {
  margin: 0;
  max-width: 34em;
  color: rgba(31, 26, 18, 0.82);
  font-family: var(--font-sans);
  font-size: clamp(17px, 1.2vw, 19px);
  line-height: 1.65;
  text-align: left;
}

.results-hero__photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  aspect-ratio: 5 / 4;
  background: var(--paper);
  box-shadow: 0 36px 80px -44px rgba(11, 9, 6, 0.18);
}

.results-hero__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* ─── 2. Spotlight stories ─── */
.results-spotlight {
  padding: clamp(72px, 9vw, 104px) var(--section-x);
  background: var(--bone);
  border-bottom: 1px solid var(--hair);
}

.results-spotlight__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 40px);
  max-width: 1240px;
  margin: 0 auto;
}

.spotlight-card {
  margin: 0;
  padding: clamp(36px, 4.5vw, 48px);
  border: 1px solid rgba(31, 26, 18, 0.1);
  border-top: 4px solid var(--terra);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 0 32px 72px -48px rgba(11, 9, 6, 0.2);
}

.spotlight-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.spotlight-card .avatar {
  width: 52px;
  height: 52px;
  font-size: 17px;
}

.spotlight-card__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.spotlight-card__name {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.35vw, 19px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.spotlight-card__note {
  color: rgba(31, 26, 18, 0.58);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.spotlight-card__quote {
  margin: 0;
  color: rgba(31, 26, 18, 0.88);
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.2vw, 18px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: -0.01em;
}

/* ─── 3. Reviews masonry ─── */
.reviews {
  padding: clamp(80px, 9vw, 112px) var(--section-x) clamp(88px, 10vw, 120px);
  background: var(--cream);
  border-bottom: 1px solid var(--hair);
}

.reviews__inner {
  max-width: 1240px;
  margin: 0 auto;
}

.reviews__head {
  max-width: 640px;
  margin: 0 auto clamp(40px, 5vw, 56px);
  text-align: center;
}

.reviews__head .eyebrow {
  justify-content: center;
  margin-bottom: 16px;
}

.reviews__head .eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.reviews__head h2 {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-size: var(--h2-size);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.022em;
  color: var(--ink);
}

.reviews__head h2 em {
  font-style: italic;
  color: var(--terra);
}

.reviews__head p {
  margin: 0;
  color: rgba(31, 26, 18, 0.72);
  font-family: var(--font-sans);
  font-size: clamp(17px, 1.2vw, 19px);
  line-height: 1.6;
}

.reviews-grid {
  columns: 3;
  column-gap: 20px;
}

.reviews-grid + .reviews-break,
.reviews-break + .reviews-grid {
  margin-top: clamp(32px, 4vw, 48px);
}

.reviews-break {
  margin: clamp(40px, 5vw, 56px) 0;
  padding: clamp(36px, 5vw, 52px) clamp(24px, 4vw, 48px);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  background: var(--bone);
  text-align: center;
}

.reviews-break__quote {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.reviews-break__quote em {
  font-style: italic;
  color: var(--terra);
}

.review {
  display: inline-block;
  width: 100%;
  break-inside: avoid;
  margin-bottom: 16px;
  padding: 16px 18px 15px;
  border: 1px solid rgba(31, 26, 18, 0.06);
  border-radius: calc(var(--radius) - 2px);
  background: transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.review:hover {
  border-color: rgba(197, 75, 30, 0.22);
  background: rgba(245, 230, 211, 0.35);
}

.review--featured {
  border-left: 2px solid var(--terra);
  background: rgba(245, 230, 211, 0.28);
}

.review--mixed {
  border-left: 2px solid var(--clay);
}

.review--mixed .review__name::after {
  content: "Honest review";
  display: block;
  margin-top: 4px;
  color: rgba(31, 26, 18, 0.5);
  font-family: var(--font-mono);
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.review .avatar {
  width: 32px;
  height: 32px;
  font-size: 12px;
}

.avatar {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--bone);
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  font-weight: 600;
}

.avatar--forest { background: var(--forest); }
.avatar--terra  { background: var(--terra); }
.avatar--clay   { background: var(--clay); }
.avatar--ink    { background: var(--ink); }
.avatar--muted  { background: var(--muted); }

.review__name {
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.review__body {
  margin: 0;
  color: rgba(31, 26, 18, 0.78);
  font-family: var(--font-sans);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.58;
}

/* ─── 4. Close CTA ─── */
.section.close {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 10vw, 128px) var(--section-x);
  border-top: none;
}

.section.close .close__backdrop {
  background:
    radial-gradient(ellipse 46% 38% at 50% 40%, rgba(245, 230, 211, 0.14) 0%, rgba(232, 168, 124, 0.07) 44%, transparent 72%),
    radial-gradient(ellipse 28% 22% at 50% 36%, rgba(242, 149, 104, 0.1) 0%, transparent 68%),
    #0b0906;
}

.section.close h2 {
  font-family: var(--font-serif);
  font-size: var(--h2-size);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.022em;
}

.section.close .close__sub {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
}

.section.close .close__sub em {
  color: var(--hero-terra);
}

.section.close .btn--terra {
  box-shadow: 0 22px 52px -18px rgba(197, 75, 30, 0.55);
}

/* ─── Disclaimer ─── */
.disclaimer {
  padding: clamp(48px, 6vw, 64px) var(--section-x);
  background: var(--bone);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}

.disclaimer__inner {
  max-width: 900px;
  margin: 0 auto;
  color: rgba(31, 26, 18, 0.62);
  font-family: var(--font-sans);
  font-size: clamp(14px, 1vw, 15px);
  line-height: 1.65;
  text-align: center;
}

.disclaimer__title {
  margin: 0 0 12px;
  color: rgba(31, 26, 18, 0.72);
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.2vw, 19px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
}

.disclaimer__inner p {
  margin: 0;
}

/* ─── Footer ─── */
.foot {
  padding: 0 0 28px;
  background: var(--bone);
}

.foot__bar {
  height: 1px;
  background: var(--hair);
}

/* ─── Responsive ─── */
@media (max-width: 960px) {
  .results-hero__inner {
    grid-template-columns: 1fr;
  }

  .results-hero__photo {
    order: -1;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }

  .results-spotlight__inner {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    columns: 2;
    column-gap: 20px;
  }
}

@media (max-width: 720px) {
  .results-hero {
    padding: 56px 20px 48px;
  }

  .results-hero h1 {
    font-size: clamp(32px, 8.5vw, 40px);
  }

  .results-hero__photo {
    aspect-ratio: 16 / 10;
  }

  .results-spotlight {
    padding: 48px 20px;
  }

  .spotlight-card {
    padding: 24px 20px;
  }

  .reviews {
    padding: 56px 16px 64px;
  }

  .reviews-grid {
    columns: 1;
  }

  .reviews-break {
    margin: 32px 0;
    padding: 32px 20px;
  }

  .reviews-break__quote {
    font-size: clamp(22px, 6vw, 28px);
  }

  .review {
    margin-bottom: 12px;
    padding: 14px 16px 13px;
  }

  .disclaimer {
    padding: 32px 20px;
  }
}

@media (min-width: 721px) and (max-width: 1024px) and (orientation: portrait) {
  .results-hero__inner {
    grid-template-columns: 1fr;
  }

  .results-hero__photo {
    order: -1;
    aspect-ratio: 16 / 10;
  }

  .reviews-grid {
    columns: 2;
  }
}
