:root {
  --bg: #07090f;
  --bg-2: #0d111c;
  --bg-3: #131a2b;
  --bg-4: #1a2238;

  --surface: rgba(20, 28, 48, 0.55);
  --surface-2: rgba(28, 38, 64, 0.78);
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --line-gold: rgba(243, 192, 80, 0.35);

  --t1: #f4f6fb;
  --t2: #aab2c8;
  --t3: #6b7592;

  /* gold tones, slightly off the standard tailwind amber */
  --gold: #f3c050;
  --gold-2: #f7d871;
  /* --gold-old: #f5c451; */
  --teal: #2dcab6;
  --pink: #ff3e89;
  --violet: #6c4eff;

  --glow-gold: 0 0 24px rgba(243, 192, 80, 0.45);
  --glow-teal: 0 0 32px rgba(45, 202, 182, 0.35);

  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;

  --r-1: 0;
  --r-2: 0;
  --r-3: 0;
  --r-4: 0;
  --r-pill: 0;

  --ff-head: 'Unbounded', system-ui, sans-serif;
  --ff-body: 'Manrope', system-ui, sans-serif;

  --wrap-max: 1240px;
  --article-max: 820px;
}

/* base reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--t1);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(108, 78, 255, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(45, 202, 182, 0.10), transparent 60%);
  background-attachment: fixed;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

.wrap {
  width: 100%;
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 0 var(--sp-4);
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  background: rgba(7, 9, 15, 0.88);
  border-bottom: 1px solid rgba(243, 192, 80, 0.18);
  box-shadow: 0 4px 24px -8px rgba(0, 0, 0, 0.5);
}

.site-header__inner {
  width: 100%;
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 0 var(--sp-4);
  height: 80px;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}
.site-logo:hover { opacity: 0.85; }
.site-logo__img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 18px rgba(243, 192, 80, 0.32));
}

/* mobile bonus CTA in header */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1408;
  font-family: var(--ff-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 18px -4px rgba(243, 192, 80, 0.65);
  transition: transform 0.25s ease-out;
  animation: pl 2.6s ease-in-out infinite;
  flex-shrink: 0;
  margin-left: auto;
}
.header-cta:hover { transform: scale(1.04); }
.header-cta:active { transform: scale(0.97); }

.header-cta__spark {
  width: 6px;
  height: 6px;
  border-radius: 0;
  background: #1a1408;
  box-shadow: 0 0 0 2px rgba(26, 20, 8, 0.25);
  animation: sp 1.6s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes sp {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}
@keyframes pl {
  0%, 100% { box-shadow: 0 4px 16px -4px rgba(243, 192, 80, 0.5); }
  50%      { box-shadow: 0 4px 26px -2px rgba(243, 192, 80, 0.92); }
}

/* nav */
.main-nav { display: none; }
.main-nav__list { display: flex; gap: var(--sp-5); }
.main-nav__link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--t2);
  padding: var(--sp-2) 0;
  transition: color 0.3s ease;
}
.main-nav__link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
  transform: translateX(-50%);
  box-shadow: var(--glow-gold);
}
.main-nav__link:hover { color: var(--t1); }
.main-nav__link:hover::after { width: 100%; }

.main-nav.is-open {
  display: block;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(7, 9, 15, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: var(--sp-5) var(--sp-4);
}
.main-nav.is-open .main-nav__list { flex-direction: column; gap: var(--sp-4); }

/* burger */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: var(--r-2);
  border: 1px solid var(--line-2);
  background: var(--surface);
  padding: 10px;
  flex-shrink: 0;
  margin-left: var(--sp-2);
}
.burger span {
  display: block;
  height: 2px;
  background: var(--t1);
  border-radius: 0;
  transition: all 0.3s ease;
}
.burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-active span:nth-child(2) { opacity: 0; }
.burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* hero */
.hero {
  position: relative;
  padding: var(--sp-8) 0 var(--sp-7);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__orb {
  position: absolute;
  border-radius: 0;
  filter: blur(80px);
  opacity: 0.45;
  animation: fl 14s ease-in-out infinite;
}
.hero__orb--1 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--violet), transparent 70%);
  top: -100px; left: -120px;
}
.hero__orb--2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, var(--teal), transparent 70%);
  bottom: -180px; right: -150px;
  animation-delay: -7s;
}
@keyframes fl {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(30px, -30px); }
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 30%, transparent 80%);
}
.hero__inner { position: relative; z-index: 1; text-align: center; }

.hero__pill {
  display: inline-block;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-5);
}
.hero__title {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff 30%, #8d97b5 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: var(--sp-5);
}
.hero__sub {
  max-width: 700px;
  margin: 0 auto var(--sp-6);
  color: var(--t2);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  line-height: 1.65;
}

/* section head */
.sec-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--sp-7);
}
.sec-head__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--sp-3);
}
.sec-head__title {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(1.6rem, 4.5vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-3);
}
.sec-head__sub {
  color: var(--t2);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.6;
}

/* brand cards */
.casinos { padding: var(--sp-8) 0; }
.casinos__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}

.brand {
  position: relative;
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: var(--r-4);
  overflow: hidden;
  transition: transform 0.4s ease-out, border-color 0.4s ease-out, box-shadow 0.4s ease-out;
  display: flex;
  flex-direction: column;
}
.brand:hover {
  transform: translateY(-6px);
  border-color: var(--line-2);
  box-shadow:
    0 20px 60px -20px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(243, 192, 80, 0.2);
}
.brand--top {
  border-color: var(--line-gold);
  box-shadow: 0 0 0 1px rgba(243, 192, 80, 0.15), 0 20px 50px -20px rgba(243, 192, 80, 0.25);
}
.brand--top:hover {
  box-shadow: 0 26px 70px -20px rgba(243, 192, 80, 0.4), 0 0 0 1px var(--line-gold);
}

.brand__rank {
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-4);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: var(--r-2);
  background: rgba(7, 9, 15, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--t1);
}
.brand--top .brand__rank {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-color: var(--gold);
  color: #1a1408;
  box-shadow: var(--glow-gold);
}

.brand__flag {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  z-index: 2;
  padding: 6px var(--sp-3);
  border-radius: var(--r-pill);
  background: rgba(243, 192, 80, 0.92);
  color: #1a1408;
  font-family: var(--ff-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand__media {
  position: relative;
  height: 150px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
}
.brand__logo {
  max-width: 75%;
  max-height: 75%;
  object-fit: contain;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.4));
  transition: transform 0.5s ease-out;
}
.brand:hover .brand__logo { transform: scale(1.05); }

.brand__body {
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  flex: 1;
}
.brand__head { display: flex; align-items: center; justify-content: space-between; }

/* brand title (span, NOT h3 */
.brand__title {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--t1);
}

.brand__bonus {
  padding: var(--sp-4);
  background: linear-gradient(135deg, rgba(108, 78, 255, 0.12), rgba(45, 202, 182, 0.08));
  border: 1px solid rgba(108, 78, 255, 0.25);
  border-radius: var(--r-3);
}
.brand__bonus-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}
.brand__bonus-amount {
  display: block;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.3;
}

.brand__features { display: flex; flex-direction: column; gap: var(--sp-2); }
.brand__features li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
  font-size: 13px;
  padding: var(--sp-2) 0;
  border-bottom: 1px dashed var(--line);
}
.brand__features li:last-child { border-bottom: none; }
.brand__feat-key { color: var(--t3); font-weight: 500; flex-shrink: 0; }
.brand__feat-val { color: var(--t1); font-weight: 600; text-align: right; }

/* TODO: shorten the review link, doesn't need an arrow */
.brand__review {
  font-size: 13px;
  font-weight: 600;
  color: var(--t2);
  text-align: center;
  margin-top: -8px;
  transition: color 0.3s ease;
}
.brand__review:hover { color: var(--gold); }

/* buttons */
.btn {
  display: inline-block;
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-2);
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-align: center;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  border: 1px solid transparent;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1408;
  box-shadow: 0 8px 24px -6px rgba(243, 192, 80, 0.55);
}
.btn--gold::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s ease-out;
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -6px rgba(243, 192, 80, 0.75), var(--glow-gold);
}
.btn--gold:hover::after { left: 100%; }
.btn--gold:active { transform: translateY(0); }

/* games */
.games { padding: var(--sp-8) 0; }
.games__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

.game {
  position: relative;
  padding: var(--sp-5);
  background: var(--surface);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  transition: transform 0.45s ease-out, border-color 0.45s ease-out, background 0.45s ease-out, box-shadow 0.45s ease-out;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  overflow: hidden;
}
.game::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.game:hover {
  transform: translateY(-5px);
  border-color: rgba(45, 202, 182, 0.3);
  background: var(--surface-2);
  box-shadow: 0 20px 50px -20px rgba(45, 202, 182, 0.35);
}
.game:hover::before { opacity: 1; }

.game__icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.game__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease-out;
}
.game:hover .game__icon img { transform: rotate(-6deg) scale(1.08); }

.game__title {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}
.game__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--t2);
  flex: 1;
}

.games__note {
  margin-top: var(--sp-6);
  padding: var(--sp-5);
  background: linear-gradient(135deg, rgba(243, 192, 80, 0.08), rgba(255, 62, 137, 0.05));
  border: 1px solid rgba(243, 192, 80, 0.2);
  border-radius: var(--r-3);
  text-align: center;
}
.games__note p { color: var(--t2); font-size: 14px; line-height: 1.65; }

/* pays */
.pays { padding: var(--sp-8) 0; }
.pays__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}

.pay {
  padding: var(--sp-5) var(--sp-4);
  background: var(--surface);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  text-align: center;
  transition: transform 0.4s ease-out, border-color 0.4s ease-out, background 0.4s ease-out, box-shadow 0.4s ease-out;
}
.pay:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 202, 182, 0.3);
  background: var(--surface-2);
  box-shadow: var(--glow-teal);
}
.pay__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--sp-3);
  display: grid;
  place-items: center;
}
.pay__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* pay title (span, NOT h3 */
.pay__title {
  display: block;
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--sp-2);
}
.pay__desc {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.5;
}

/* article, self-contained */
.article {
  padding: var(--sp-8) 0 var(--sp-9);
}
.article__wrap {
  width: 100%;
  max-width: var(--article-max);
  margin: 0 auto;
  padding: 0 var(--sp-4);
}
.article h2 {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(1.4rem, 3.5vw, 1.85rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: var(--sp-7) 0 var(--sp-4);
  color: var(--t1);
}
.article h2:first-of-type { margin-top: 0; }
.article h3 {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: clamp(1.1rem, 2.6vw, 1.3rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: var(--sp-6) 0 var(--sp-3);
  color: var(--gold-2);
}
.article p {
  margin-bottom: var(--sp-4);
  color: var(--t2);
  font-size: 15px;
  line-height: 1.75;
}
.article ul {
  margin: var(--sp-3) 0 var(--sp-5);
  padding-left: 0;
}
.article ul li {
  position: relative;
  padding: var(--sp-2) 0 var(--sp-2) var(--sp-5);
  color: var(--t2);
  font-size: 15px;
  line-height: 1.65;
}
.article ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 0;
  background: var(--teal);
  box-shadow: 0 0 12px rgba(45, 202, 182, 0.6);
}

.article__meta {
  margin-top: var(--sp-7);
  padding: var(--sp-4);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--t3) !important;
  text-align: center;
}

/* footer */
.site-footer {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4));
  border-top: 1px solid var(--line);
  padding: var(--sp-8) 0 var(--sp-5);
  margin-top: var(--sp-7);
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--line);
}
.site-footer__brand .site-logo { margin-bottom: var(--sp-4); }
.site-footer__desc {
  color: var(--t3);
  font-size: 14px;
  line-height: 1.65;
  max-width: 380px;
}
.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}
.site-footer__col h4 {
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}
.site-footer__col ul li { margin-bottom: var(--sp-2); }
.site-footer__col a {
  color: var(--t2);
  font-size: 14px;
  transition: color 0.3s ease, padding 0.3s ease;
  display: inline-block;
}
.site-footer__col a:hover { color: var(--gold); padding-left: 4px; }

.site-footer__bottom {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding-top: var(--sp-5);
  flex-wrap: wrap;
}
.site-footer__age {
  width: 44px;
  height: 44px;
  border-radius: 0;
  border: 2px solid var(--pink);
  display: grid;
  place-items: center;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 13px;
  color: var(--pink);
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(255, 62, 137, 0.4);
}
.site-footer__copy {
  font-size: 12px;
  color: var(--t3);
  line-height: 1.5;
}

/* accessibility */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r-1);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* very small */
@media (max-width: 380px) {
  .site-header__inner { height: 72px; padding: 0 var(--sp-3); }
  .site-logo__img { height: 44px; }
  .header-cta { padding: 8px 12px; font-size: 11px; letter-spacing: 0.02em; gap: 5px; }
  .header-cta__spark { width: 5px; height: 5px; }
  .burger { width: 38px; height: 38px; padding: 9px; margin-left: var(--sp-1); }
  .main-nav.is-open { top: 72px; }
  .wrap, .article__wrap { padding: 0 var(--sp-3); }
}

/* tablet */
@media (min-width: 640px) {
  .wrap, .article__wrap, .site-header__inner { padding: 0 var(--sp-5); }
  .hero { padding: var(--sp-9) 0 var(--sp-8); }
  .casinos__grid { grid-template-columns: repeat(2, 1fr); }
  .games__grid { grid-template-columns: repeat(2, 1fr); }
  .pays__grid { grid-template-columns: repeat(3, 1fr); }
  .site-footer__cols { grid-template-columns: repeat(3, 1fr); }
}

/* desktop */
@media (min-width: 960px) {
  .site-header__inner { height: 96px; }
  .site-logo__img { height: 76px; }

  .header-cta { display: none !important; }
  .burger { display: none; }

  .main-nav { display: block; margin-left: auto; }

  .casinos__grid { grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }
  .games__grid { grid-template-columns: repeat(3, 1fr); }
  .pays__grid { grid-template-columns: repeat(6, 1fr); }

  .site-footer__top { grid-template-columns: 1fr 2fr; gap: var(--sp-8); }
  .site-footer__cols { grid-template-columns: repeat(3, 1fr); }

  .hero__title {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1200px) {
  .wrap, .article__wrap, .site-header__inner { padding: 0 var(--sp-6); }
}