:root {
  --black: #f6f0e8;
  --panel: #fff9f0;
  --card: #fff9f0;
  --line: #d8cbbb;
  --line-2: #bca990;
  --red: #b9552a;
  --red-soft: #8b3f22;
  --white: #162b29;
  --text: #4f5f59;
  --muted: #64736c;
  --dim: #6d776f;
  --cream: #fff8ee;
  --sand: #efe5d6;
  --contact: #e7d8c4;
  --font-head: "Oswald", Impact, sans-serif;
  --font-body: "Hanken Grotesk", Arial, sans-serif;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.55;
}
body.nav-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 1000;
  background: var(--red);
  color: var(--cream);
  padding: 10px 14px;
}
.skip-link:focus {
  left: 12px;
}

.shell {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 249, 240, 0.96);
  backdrop-filter: blur(10px);
}

.nav,
.brand,
.nav-menu,
.actions,
.hero-stats,
.accolades__grid {
  display: flex;
  align-items: center;
}

.nav {
  min-height: 82px;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  gap: 13px;
}
.brand__mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: var(--red);
  color: var(--cream);
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  transform: skewX(-11deg);
}
.brand__mark::first-letter {
  transform: skewX(11deg);
}
.brand strong,
.brand small {
  display: block;
  font-family: var(--font-head);
  text-transform: uppercase;
}
.brand strong {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}
.brand small {
  margin-top: 5px;
  color: var(--red);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.32em;
}

.nav-menu {
  gap: 30px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-menu a:not(.skew-btn) {
  color: var(--white);
}
.nav-menu .is-active {
  color: var(--red);
}
.phone {
  letter-spacing: 0.04em;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-2);
  background: transparent;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.skew-btn {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0 32px;
  background: var(--red);
  color: var(--cream);
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  transform: skewX(-10deg);
  transition:
    background 180ms ease,
    transform 180ms ease;
}
.skew-btn span {
  transform: skewX(10deg);
}
.skew-btn:hover {
  background: var(--red-soft);
  transform: skewX(-10deg) translateY(-1px);
}
.skew-btn--small {
  min-height: 47px;
  padding-inline: 24px;
  font-size: 14px;
}

.outline-btn {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--line-2);
  padding: 0 30px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--black);
}
.hero::before {
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  content: "";
  background: var(--red);
}
.hero__slash {
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  background: linear-gradient(
    134deg,
    rgba(185, 85, 42, 0.1),
    rgba(23, 63, 58, 0.05) 70%
  );
}
.hero__grid {
  position: relative;
  display: grid;
  min-height: 789px;
  align-items: center;
  gap: 58px;
  grid-template-columns: 1.12fr 0.88fr;
  padding: 80px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  border: 1px solid rgba(185, 85, 42, 0.32);
  background: rgba(185, 85, 42, 0.1);
  color: var(--red-soft);
  padding: 9px 17px;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero .badge {
  gap: 12px;
  margin-bottom: 34px;
  border: 1px solid rgba(185, 85, 42, 0.36);
  color: var(--red-soft);
  padding: 19px 30px;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1;
}

.hero .badge span {
  display: block;
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  background: var(--red);
}
h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}
h1,
h2,
h3 {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 0.98;
  text-transform: uppercase;
}
h1 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(58px, 6vw, 74px);
  letter-spacing: 0.005em;
}
h1 em {
  display: block;
  color: var(--red);
  font-style: normal;
}
h2 {
  margin-bottom: 20px;
  font-size: clamp(40px, 4.2vw, 60px);
}
h3 {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.25;
}

.hero__copy > p:not(.badge) {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--text);
  font-size: 19px;
  line-height: 1.6;
}
.actions {
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.hero-stats {
  width: min(100%, 680px);
  align-items: stretch;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}
.hero-stats div {
  min-width: 136px;
  padding: 20px 28px 0 0;
}
.hero-stats div + div {
  border-left: 1px solid var(--line);
  padding-left: 29px;
}
.hero-stats strong {
  display: block;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 34px;
  line-height: 1.5;
}
.hero-stats span {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__image {
  position: relative;
  max-width: 454px;
}
.hero__image span {
  position: absolute;
  inset: 16px -16px -16px 16px;
  background: var(--red);
}
.hero__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 454 / 568;
  object-fit: cover;
}

.accolades {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  padding: 30px 0;
}
.accolades__grid {
  justify-content: center;
  gap: 48px;
}
.accolades__grid div {
  text-align: center;
}
.accolades__grid strong {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 6px;
  place-items: center;
  border: 1px solid var(--red);
  border-radius: 50%;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 16px;
}
.accolades__grid span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.section {
  padding: 80px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
}
.section-head > p {
  max-width: 300px;
  color: var(--muted);
  font-size: 15px;
}
.section-head--stack {
  display: block;
}
.section-head--center {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.results,
.practice,
.guarantees {
  background: var(--black);
  border-bottom: 1px solid var(--line);
}
.results__grid,
.practice__grid,
.guarantees__grid {
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(4, 1fr);
}
.result-card,
.practice-card,
.guarantees__grid div {
  background: var(--card);
  border: 1px solid var(--line);
}
.result-card {
  min-height: 246px;
  padding: 36px 28px;
}
.result-card strong {
  display: block;
  margin-bottom: 16px;
  color: var(--red);
  font-family: var(--font-head);
  font-size: 34px;
  line-height: 1;
}
.result-card p,
.practice-card p,
.review-row p,
.review-intro,
.about__grid p {
  color: var(--muted);
}

.testimonials {
  border-bottom: 1px solid var(--line);
  background: var(--black);
  padding: 92px 0;
}
.testimonials__grid {
  display: grid;
  gap: 66px;
  grid-template-columns: 0.9fr 1fr;
}
.featured-review {
  min-height: 758px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px;
  background: var(--red);
  color: var(--cream);
  box-shadow: 0 24px 70px rgba(70, 54, 39, 0.12);
}
.featured-review .eyebrow {
  color: var(--cream);
}
.quote-mark {
  display: block;
  margin-top: 8px;
  font-family: var(--font-head);
  font-size: 86px;
  line-height: 0.8;
}
blockquote {
  color: var(--cream);
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 800;
  line-height: 1.1;
}
.featured-review footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.featured-review strong,
.featured-review span {
  display: block;
}
.stars {
  color: var(--cream);
  letter-spacing: 0.08em;
}
.review-list h2 {
  margin-bottom: 18px;
}
.review-intro {
  max-width: 600px;
  margin-bottom: 34px;
  font-size: 17px;
}
.review-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.review-row strong {
  display: block;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 20px;
}
.review-row span {
  color: var(--red);
}

.practice__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.practice__head .eyebrow {
  margin-bottom: 12px;
  font-size: 10px;
  letter-spacing: 0.26em;
}

.practice__head h2 {
  margin: 0;
  font-size: clamp(42px, 4.5vw, 58px);
  letter-spacing: 0.01em;
}

.practice__head a {
  position: relative;
  padding-bottom: 9px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.practice__head a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
}

.practice__grid {
  position: relative;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.practice__grid::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 33%;
  height: 2px;
  content: "";
  background: var(--red);
}

.practice-card {
  min-height: 171px;
  padding: 33px 30px 28px;
  background: var(--card);
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.practice-card:nth-child(3n) {
  border-right: 0;
}

.practice-card span {
  display: block;
  margin-bottom: 24px;
  color: var(--red);
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.practice-card h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 17px;
  letter-spacing: 0.02em;
  line-height: 1;
}

.practice-card p {
  max-width: 250px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.contact-band {
  position: relative;
  overflow: hidden;
  background: var(--contact);
  color: var(--white);
  padding: 50px 0;
}
.contact-slash {
  position: absolute;
  right: 18.5%;
  top: 0;
  width: 252px;
  height: 100%;
  background: rgba(185, 85, 42, 0.12);
  transform: skewX(-14deg);
}
.contact__grid {
  position: relative;
  display: grid;
  gap: 72px;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
}
.contact__copy .eyebrow {
  margin-bottom: 13px;
  color: var(--red);
  font-size: 10px;
  letter-spacing: 0.22em;
}

.contact__copy h2 {
  max-width: 390px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(48px, 5.1vw, 66px);
  letter-spacing: 0.01em;
  line-height: 0.9;
}

.contact__copy p {
  max-width: 420px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}

.contact-links {
  display: grid;
  gap: 18px;
  margin-top: 38px;
  font-weight: 800;
}

.contact-links a,
.contact-links p {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin: 0;
  color: var(--white);
  font-size: 13px;
  line-height: 1.4;
}

.contact-links a:first-child {
  font-size: 19px;
}

.contact-links span {
  display: inline-flex;
  width: 13px;
  flex: 0 0 13px;
  justify-content: center;
  color: var(--red);
}

.review-form {
  background: var(--panel);
  padding: 34px 37px 31px;
  box-shadow: 0 24px 60px rgba(70, 54, 39, 0.12);
}

.form-row {
  display: grid;
  gap: 13px;
  grid-template-columns: 1fr 1fr;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cdbba8;
  background: #fffdf8;
  color: var(--white);
  margin-bottom: 13px;
  padding: 14px 15px;
  font-size: 12px;
}

input {
  min-height: 47px;
}

textarea {
  min-height: 107px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: var(--muted);
}

.form-submit {
  width: 100%;
  min-height: 54px;
  border: 0;
  margin-top: 4px;
  background: var(--red);
  color: var(--cream);
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-form p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 10px;
  text-align: left;
}

.about {
  border-bottom: 1px solid var(--line);
  background: var(--black);
}

.about .shell {
  max-width: 1120px;
}

.about > .shell > .eyebrow {
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: 0.22em;
}

.about > .shell > h2 {
  margin-bottom: 28px;
  font-size: clamp(44px, 5vw, 61px);
  letter-spacing: 0.01em;
  line-height: 0.96;
}

.about__grid {
  display: grid;
  gap: 0 54px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about__grid p {
  max-width: none;
  margin: 0 0 34px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
}

.about-stats {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 130px 130px 130px;
  gap: 18px;
  border-top: 1px solid var(--line);
}

.about-stat {
  padding-top: 25px;
  padding-bottom: 5px;
}
.about-stat:not(:last-child) {
  border-right: 1px solid var(--line);
}

.about-stat strong {
  display: block;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 25px;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.about-stat span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.roblox {
  padding: 92px 0;
  border-bottom: 1px solid var(--line);
  background: var(--sand);
}
.roblox__grid {
  display: grid;
  gap: 66px;
  grid-template-columns: 0.9fr 1fr;
  align-items: center;
}
.roblox__image {
  position: relative;
}
.roblox__image::after {
  position: absolute;
  inset: 20px -16px -16px 16px;
  z-index: 0;
  content: "";
  background: var(--red);
}
.roblox__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  object-fit: cover;
}
.roblox__copy p:not(.badge) {
  color: var(--text);
  font-size: 17px;
}
.roblox ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.roblox li::before {
  content: "▸";
  margin-right: 12px;
  color: var(--red);
}

.guarantees {
  padding: 72px 0 60px;
  background: var(--sand);
}

.guarantees .section-head {
  max-width: 100%;
  margin-bottom: 46px;
  text-align: center;
}

.guarantees .eyebrow {
  margin-bottom: 15px;
  font-size: 10px;
  letter-spacing: 0.22em;
}

.guarantees h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 57px);
  letter-spacing: 0.02em;
}

.guarantees__grid {
  gap: 0;
  border: 1px solid var(--line-2);
  grid-template-columns: repeat(4, 1fr);
}

.guarantees__grid div {
  display: grid;
  min-height: 160px;
  align-content: center;
  padding: 34px 24px;
  border: 0;
  border-right: 1px solid var(--line-2);
  background: transparent;
  text-align: center;
}

.guarantees__grid div:last-child {
  border-right: 0;
}

.guarantees__grid strong {
  display: block;
  color: var(--red);
  font-family: var(--font-head);
  font-size: 57px;
  font-weight: 700;
  line-height: 1;
}
.guarantees__grid span {
  display: block;
  max-width: 220px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.35;
}
.fineprint {
  margin: 44px 0 0;
  color: var(--dim);
  font-size: 11px;
  text-align: center;
}

.footer {
  background: var(--black);
  padding: 60px 0 34px;
}
.footer .brand {
  display: flex !important;
}
.footer__grid {
  display: grid;
  gap: 48px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 44px;
  grid-template-columns: 1.4fr repeat(3, 1fr);
}
.footer h2 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer a,
.footer p {
  display: block;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14.5px;
}
.footer__bottom {
  display: grid;
  gap: 40px;
  padding-top: 26px;
  grid-template-columns: 1fr 1fr;
}
.footer__bottom p {
  color: var(--dim);
  font-size: 12.5px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav {
    min-height: 76px;
  }
  .nav-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 22px 20px 28px;
    border-bottom: 1px solid var(--line);
    background: var(--panel);
    flex-direction: column;
  }
  body.nav-open .nav-menu {
    display: flex;
  }
  .hero__grid,
  .testimonials__grid,
  .contact__grid,
  .roblox__grid,
  .about__grid {
    grid-template-columns: 1fr;
  }
  .contact__grid {
    gap: 42px;
  }
  .hero__image {
    max-width: 480px;
  }
  .results__grid,
  .practice__grid,
  .guarantees__grid,
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .guarantees__grid div:nth-child(2n) {
    border-right: 0;
  }
  .guarantees__grid div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-2);
  }
  .practice__head {
    align-items: start;
    flex-direction: column;
  }
  .practice-card:nth-child(3n) {
    border-right: 1px solid var(--line);
  }
  .practice-card:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 40px, var(--max));
  }
  .section,
  .testimonials,
  .roblox,
  .contact-band {
    padding: 64px 0;
  }
  .hero__slash {
    width: 100%;
  }
  .hero__grid {
    min-height: auto;
    gap: 40px;
    padding: 64px 0;
  }
  h1 {
    font-size: 58px;
  }
  h2 {
    font-size: 40px;
  }
  .actions,
  .hero-stats {
    flex-direction: column;
    align-items: stretch;
  }
  .skew-btn,
  .outline-btn {
    width: 100%;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-stats div,
  .hero-stats div + div {
    min-width: 0;
    padding: 20px 10px 0 0;
    border-left: 0;
  }
  .hero-stats strong {
    font-size: 34px;
  }
  .hero .badge {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    letter-spacing: 0.18em;
  }
  .accolades__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }
  .accolades__grid strong {
    width: 48px;
    height: 48px;
  }
  .accolades__grid span {
    font-size: 10px;
  }
  .section-head {
    display: block;
  }
  .results__grid,
  .practice__grid,
  .guarantees__grid,
  .footer__grid,
  .footer__bottom,
  .form-row {
    grid-template-columns: 1fr;
  }
  .guarantees__grid div,
  .guarantees__grid div:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--line-2);
  }
  .guarantees__grid div:last-child {
    border-bottom: 0;
  }
  .contact__copy h2 {
    font-size: 48px;
  }
  .review-form {
    padding: 26px 22px;
  }
  .about-stats {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .practice-card,
  .practice-card:nth-child(2n),
  .practice-card:nth-child(3n) {
    border-right: 0;
  }
  .featured-review {
    min-height: 590px;
    padding: 32px;
  }
  .review-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .contact-slash {
    right: -80px;
  }
  .roblox__image {
    order: -1;
    margin-inline: -20px;
  }
  .roblox__image::after {
    display: none;
  }
}

.accolades__grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 34px;
        align-items: center;
      }
      .accolades__grid div {
        min-height: 96px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .accolades__grid img {
        max-width: 100%;
        max-height: 88px;
        object-fit: contain;
        display: block;
      }
      @media (max-width: 760px) {
        .accolades__grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
          gap: 18px 24px;
        }
      }