:root {
  --ma-red: #c41c2b;
  --ma-red-strong: #d52838;
  --ma-blue: #0862ad;
  --ma-yellow: #fdcf04;
  --ma-gold: #ffce00;
  --ma-ink: #2b2824;
  --ma-muted: #6d6762;
  --ma-surface: #ffffff;
  --ma-shell: #f7f5f3;
  --ma-line: #e8e5e2;
  --ma-line-strong: #d6d3d0;
  --ma-shadow: 0 24px 60px rgba(43, 40, 36, 0.1);
  --container: min(1200px, calc(100% - 3rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ma-ink);
  background: var(--ma-shell);
  font-family: "Red Hat Display", sans-serif;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

code {
  font-family: "Red Hat Display", sans-serif;
  font-size: 0.88em;
  font-weight: 700;
  color: var(--ma-red);
}

.container,
.hero-shell {
  width: var(--container);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100svh;
  color: #ffffff;
  background: #131313;
  overflow: clip;
}

.hero-video,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08) brightness(0.72);
}

.hero-scrim {
  background:
    linear-gradient(180deg, rgba(19, 19, 19, 0.52) 0%, rgba(19, 19, 19, 0.2) 28%, rgba(19, 19, 19, 0.58) 100%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.74) 0%, rgba(10, 10, 10, 0.1) 58%, rgba(10, 10, 10, 0.48) 100%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100svh;
  padding: 1.5rem 0 3rem;
}

.hero-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  color: #ffffff;
  width: clamp(250px, 26vw, 380px);
}

.hero-cta,
.scroll-cue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.hero-cta {
  min-height: 48px;
  padding: 0 1.5rem;
  color: #ffffff;
  background: var(--ma-red);
  border: 1px solid var(--ma-red);
  box-shadow: 0 18px 40px rgba(196, 28, 43, 0.28);
}

.hero-cta:hover,
.hero-cta:focus-visible {
  transform: translateY(-1px);
  background: #ab1321;
}

.hero-content {
  display: grid;
  align-content: end;
  gap: 1.6rem;
  padding: clamp(4rem, 18vh, 10rem) 0 1.5rem;
  max-width: min(54rem, 92%);
}

.eyebrow {
  margin: 0;
  color: var(--ma-gold);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--ma-red);
}

h1,
h2 {
  margin: 0;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 10ch;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.95;
  font-weight: 900;
  text-wrap: balance;
}

h2 {
  max-width: 14ch;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 0.97;
  font-weight: 900;
  color: var(--ma-ink);
}

.hero-copy,
.section-copy {
  margin: 0;
  max-width: 42rem;
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.65;
}

.issue-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.issue-row article {
  padding: 1.15rem 1.2rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

.issue-row span {
  display: block;
  margin-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.issue-row strong {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
}

.scroll-cue {
  position: absolute;
  right: max(1.5rem, calc((100vw - var(--container)) / 2));
  bottom: 1.8rem;
  z-index: 1;
  min-height: 46px;
  padding: 0 1.25rem;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.scroll-cue:hover,
.scroll-cue:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.5);
}

.section {
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.review-section {
  background:
    radial-gradient(circle at top right, rgba(253, 207, 4, 0.14), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fbfaf8 100%);
}

.review-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.4fr);
  gap: 2rem 3rem;
  align-items: start;
}

.section-heading {
  display: grid;
  gap: 1rem;
  grid-column: 1 / -1;
}

.section-heading-tight {
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.review-pullquote,
.review-body,
.review-card {
  background: var(--ma-surface);
  border: 1.5px solid var(--ma-line);
  box-shadow: var(--ma-shadow);
}

.review-pullquote {
  position: sticky;
  top: 1.5rem;
  padding: 2rem;
  border-radius: 28px;
}

.review-pullquote p {
  margin: 0;
  color: var(--ma-ink);
  font-family: "Libre Baskerville", serif;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  line-height: 1.55;
}

.review-body {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 32px;
}

.review-body p,
.review-body blockquote {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--ma-ink);
}

.review-body p + p,
.review-body p + blockquote,
.review-body blockquote + p,
.review-body blockquote + blockquote {
  margin-top: 1.25rem;
}

.review-body blockquote {
  padding: 1.35rem 1.5rem;
  border-left: 4px solid var(--ma-red);
  background: #fdf5f6;
  border-radius: 0 20px 20px 0;
  font-family: "Libre Baskerville", serif;
}

.marquee-section {
  background: var(--ma-shell);
  overflow: clip;
}

.marquee {
  width: 100%;
  overflow: hidden;
  padding: 1rem 0 0.5rem;
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding: 0 1.5rem;
  animation: marquee 42s linear infinite;
}

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

.review-card {
  flex: 0 0 clamp(280px, 28vw, 360px);
  min-height: 240px;
  padding: 1.4rem;
  border-radius: 24px;
}

.review-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.review-card-link:hover,
.review-card-link:focus-visible {
  transform: translateY(-3px);
  border-color: var(--ma-red);
  box-shadow: 0 28px 70px rgba(43, 40, 36, 0.15);
}

.review-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-card-top strong,
.review-card-top span,
.review-card p,
.stars {
  display: block;
}

.review-card-top strong {
  font-size: 1rem;
  color: var(--ma-ink);
}

.review-card-top span {
  margin-top: 0.2rem;
  color: var(--ma-muted);
  font-size: 0.88rem;
}

.google-badge {
  width: 2rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--ma-line-strong);
  color: var(--ma-blue);
  font-weight: 900;
  background: #ffffff;
}

.stars {
  margin-bottom: 1rem;
  color: var(--ma-yellow);
  letter-spacing: 0.18em;
  font-size: 0.95rem;
}

.review-card p {
  margin: 0;
  color: var(--ma-ink);
  font-family: "Libre Baskerville", serif;
  font-size: 1rem;
  line-height: 1.75;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.75rem));
  }
}

@media (max-width: 980px) {
  .issue-row,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-pullquote {
    position: static;
  }

  h2 {
    max-width: 100%;
  }

  .scroll-cue {
    right: 1.5rem;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 2rem, 100% - 2rem);
  }

  .hero-shell {
    padding-top: 1rem;
  }

  .hero-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    width: min(330px, 82vw);
  }

  .hero-content {
    padding-top: 3.5rem;
    max-width: 100%;
  }

  .hero-cta,
  .scroll-cue {
    min-height: 44px;
  }

  .scroll-cue {
    position: static;
    margin-top: 1rem;
    justify-self: start;
  }

  .review-card {
    flex-basis: 300px;
  }

  .marquee-track {
    animation-duration: 48s;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee-track {
    animation: none;
  }

  .hero-cta,
  .scroll-cue {
    transition: none;
  }
}
