:root {
  --black: #000000;
  --dark: #121110;
  --yellow: #eeff00;
  --orange: #fe7612;
  --cream: #fefcf9;
  --cream-2: #fff9f4;
  --white: #ffffff;
  --grey: #ededed;
  --container: 1200px;
  --gutter: 60px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Roboto", Arial, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 400;
}

button {
  font-family: inherit;
}

.site {
  background: var(--dark);
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 48px;
  background: var(--yellow);
  color: var(--dark);
  border-radius: 24px;
  font-size: 16px;
  line-height: 1.2;
  text-transform: capitalize;
  white-space: nowrap;
  transition: filter .2s ease, transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
  filter: brightness(.92);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(238, 255, 0, .25);
}

.btn:active {
  transform: translateY(0);
}

.eyebrow {
  font-weight: 300;
  font-size: 12px;
  line-height: 1.2;
  color: var(--yellow);
  text-transform: capitalize;
}

.header {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 60px;
  background: var(--dark);
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo__img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
}

.logo__text {
  font-weight: 900;
  font-style: italic;
  font-size: 20px;
  line-height: .9;
  text-transform: uppercase;
  color: var(--grey);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 16px;
  line-height: 1.2;
  color: var(--grey);
  text-transform: capitalize;
  transition: color .2s ease;
}

.nav__link:hover {
  color: var(--yellow);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--grey);
  transition: transform .25s ease, opacity .25s ease;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 60px;
  padding-bottom: 60px;
  background: var(--dark);
}

.hero__media {
  width: 100%;
  height: 520px;
}

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

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 0 60px;
}

.hero__title {
  width: 100%;
  font-size: clamp(48px, 6.67vw, 80px);
  line-height: .9;
  color: var(--cream);
}

.hero__text {
  width: 100%;
  font-size: 16px;
  line-height: 1.2;
  color: var(--white);
  text-transform: capitalize;
}

.marquee {
  position: relative;
  overflow: hidden;
  height: 214px;
  background: var(--dark);
}

.marquee__bar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 170%;
  padding: 6px 0;
  overflow: hidden;
}

.marquee__bar--yellow {
  z-index: 1;
  background: var(--yellow);
  transform: translate(-50%, -50%) rotate(-3deg);
}

.marquee__bar--orange {
  z-index: 2;
  background: var(--orange);
  transform: translate(-50%, -50%) rotate(8deg);
}

.marquee__track {
  display: flex;
  flex-shrink: 0;
  white-space: nowrap;
  will-change: transform;
  animation: marquee-scroll 45s linear infinite;
}

.marquee__bar--orange .marquee__track {
  animation-direction: reverse;
}

.marquee__track span {
  display: block;
  flex-shrink: 0;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 24px;
  line-height: .9;
}

.marquee__bar--yellow .marquee__track span {
  color: var(--dark);
}

.marquee__bar--orange .marquee__track span {
  color: var(--cream);
}

@keyframes marquee-scroll {
  to {
    transform: translateX(-50%);
  }
}

.vtitle {
  flex: 0 0 59px;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vtitle span {
  display: block;
  white-space: nowrap;
  transform: rotate(-90deg);
  font-size: clamp(40px, 5.5vw, 66px);
  line-height: .9;
  color: var(--cream);
}

.about {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px;
  background: var(--dark);
}

.about__media {
  flex: 1 1 0;
  min-width: 0;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
}

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

.about__content {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__heading {
  font-size: clamp(40px, 5.5vw, 66px);
  line-height: .9;
  color: var(--cream);
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 16px;
  line-height: 1.2;
  color: var(--white);
  text-transform: capitalize;
}

.why {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px;
  background: var(--dark);
}

.why__grid {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: center;
  gap: 20px;
}

.feature {
  flex: 1 1 calc(50% - 10px);
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--orange);
  border-radius: 24px;
}

.feature--yellow {
  border-color: var(--yellow);
}

.feature__icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.feature__title {
  font-size: 22px;
  line-height: normal;
  color: var(--white);
}

.feature__text {
  font-size: 16px;
  line-height: 1.2;
  color: var(--white);
}

.stats {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 60px;
  background: var(--dark);
}

.stats__display {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.stats__reel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stats__num {
  font-weight: 900;
  font-size: clamp(110px, 17.84vw, 214px);
  line-height: .9;
  text-transform: uppercase;
  color: var(--cream);
}

.stats__num--ghost {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, .35);
}

.stats__fade {
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.stats__fade--top {
  top: 0;
  height: 122px;
  background: linear-gradient(to bottom, var(--dark), rgba(18, 17, 16, 0));
}

.stats__fade--bottom {
  bottom: 0;
  height: 113px;
  background: linear-gradient(to top, var(--dark), rgba(18, 17, 16, 0));
}

.stats__out {
  font-size: 24px;
  line-height: 1.2;
  color: rgba(255, 255, 255, .4);
  text-transform: capitalize;
}

.stats__card {
  flex: 1 1 0;
  min-width: 0;
  padding: 24px 20px;
  background: var(--orange);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 24px;
}

.stats__card p {
  font-size: 16px;
  line-height: 1.2;
  color: var(--cream-2);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 60px;
  background: var(--dark);
}

.faq__head-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq__heading {
  font-size: clamp(40px, 5.5vw, 66px);
  line-height: .9;
  color: var(--cream);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  padding: 24px 20px;
  border: 1px solid transparent;
  border-radius: 24px;
  color: var(--white);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.faq__item.is-open {
  background: var(--yellow);
  border-color: rgba(255, 255, 255, .2);
  color: var(--dark);
}

.faq__bar {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.faq__bar-text {
  flex: 1 1 0;
  min-width: 0;
}

.faq__q {
  font-size: 22px;
  line-height: .9;
}

.faq__a {
  display: none;
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.2;
}

.faq__item.is-open .faq__a {
  display: block;
}

.faq__icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.faq__icon::before {
  content: "";
  display: block;
  width: 12px;
  height: 24px;
  background: currentColor;
  -webkit-mask: url(/wp-content/themes/briskquarnbelor/assets/images/arrow-down.svg) center / contain no-repeat;
  mask: url(/wp-content/themes/briskquarnbelor/assets/images/arrow-down.svg) center / contain no-repeat;
  transform: rotate(90deg);
  transition: transform .25s ease;
}

.faq__item.is-open .faq__icon::before {
  transform: rotate(-90deg);
}

.catalog-hero {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 60px;
  background: var(--dark);
}

.catalog-hero__head {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.catalog-hero__title {
  font-size: clamp(40px, 5.5vw, 66px);
  line-height: .9;
  color: var(--cream);
}

.catalog-hero__text {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 16px;
  line-height: 1.2;
  color: var(--white);
  text-transform: capitalize;
}

.catalog-grid {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.catalog-card {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, .35);
}

.catalog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.catalog-card:hover img {
  transform: scale(1.06);
}

.catalog-card--xs {
  flex: 1 1 0;
  min-width: 0;
  aspect-ratio: 1 / 1;
}

.catalog-card--sm {
  flex: 0 0 216px;
  width: 216px;
  height: 216px;
}

.catalog-card--md {
  flex: 0 0 273px;
  width: 273px;
  height: 273px;
}

.catalog-card--lg {
  flex: 0 0 308px;
  width: 308px;
  height: 308px;
}

.catalog-features {
  padding: 60px;
  background: var(--dark);
}

.catalog-features__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}

.catalog-features__grid .feature {
  flex: 1 1 calc(33.333% - 14px);
  min-width: 260px;
  min-height: 222px;
}

.game {
  position: relative;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 60px;
  overflow: hidden;
  background: var(--dark);
}

.game__glow {
  position: absolute;
  top: 50%;
  left: calc(50% - 342px);
  width: 951px;
  height: 759px;
  transform: translate(-50%, -50%) rotate(-3.54deg);
  pointer-events: none;
  opacity: .9;
}

.game__media {
  position: relative;
  z-index: 1;
  flex: 0 0 442px;
  width: 442px;
  height: 442px;
  border-radius: 24px;
  overflow: hidden;
}

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

.game__content {
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.game__eyebrow {
  font-weight: 300;
  font-size: 12px;
  line-height: 1.2;
  color: var(--yellow);
  text-transform: capitalize;
}

.game__title {
  font-size: clamp(40px, 5.5vw, 66px);
  line-height: .9;
  color: var(--cream);
}

.game__text {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 16px;
  line-height: 1.2;
  color: var(--white);
  text-transform: capitalize;
}

.policy {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 60px;
  background: var(--dark);
}

.policy__title {
  font-size: clamp(40px, 5.5vw, 66px);
  line-height: .9;
  color: var(--cream);
}

.policy__content {
  font-size: 16px;
  line-height: 1.2;
  color: var(--white);
  text-transform: capitalize;
}

.policy__content > *:last-child {
  margin-bottom: 0;
}

.policy__content p,
.policy__content h2,
.policy__content h3,
.policy__content ul {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
}

.policy__content ul {
  padding-left: 24px;
  list-style: disc;
}

.policy__content li {
  margin: 0;
}

.policy__content a {
  color: inherit;
  text-decoration: underline;
}

.policy__content a:hover {
  color: var(--yellow);
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 60px;
  background: var(--orange);
}

.contact__head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.contact__title {
  font-size: clamp(40px, 5.5vw, 66px);
  line-height: .9;
  color: var(--cream);
}

.contact__text {
  font-size: 16px;
  line-height: 1.2;
  color: var(--white);
  text-transform: capitalize;
}

.contact__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.contact__pill {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--dark);
  color: var(--white);
  border-radius: 24px;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  transition: filter .2s ease;
}

.contact__pill:hover {
  filter: brightness(1.25);
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 60px;
  background: var(--orange);
  border-radius: 50px 50px 0 0;
}

.footer__brand {
  font-weight: 900;
  font-style: italic;
  font-size: clamp(40px, 8.83vw, 106px);
  line-height: .9;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  color: var(--white);
}

.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer__copy {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .6);
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 21.75px;
}

.footer__social-link {
  display: block;
  width: 58px;
  height: 58px;
  transition: transform .2s ease;
}

.footer__social-link:hover {
  transform: translateY(-3px);
}

.footer__social-link img {
  width: 100%;
  height: 100%;
}

.footer__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer__menu a {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  color: var(--white);
  text-transform: capitalize;
  transition: opacity .2s ease;
}

.footer__menu a:hover {
  opacity: .75;
}

/* Content container: backgrounds stay full-width, content is centered */
.header,
.hero__content,
.about,
.why,
.stats,
.faq,
.catalog-hero,
.catalog-features,
.game,
.policy,
.contact,
.footer {
  padding-left: max(var(--gutter), calc((100% - var(--container)) / 2));
  padding-right: max(var(--gutter), calc((100% - var(--container)) / 2));
}

/* Scroll-reveal animations */
.js main > section,
.js .footer {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}

.js main > section.is-visible,
.js .footer.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js main > section,
  .js .footer {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Hover effects */
.logo {
  transition: transform .2s ease;
}

.logo:hover {
  transform: scale(1.04);
}

.logo:hover .logo__text {
  color: var(--yellow);
}

.logo__text {
  transition: color .2s ease;
}

.feature {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .35);
}

.feature__icon {
  transition: transform .35s ease;
}

.feature:hover .feature__icon {
  transform: scale(1.1) rotate(-4deg);
}

.about__media img,
.game__media img {
  transition: transform .5s ease;
}

.about__media:hover img,
.game__media:hover img {
  transform: scale(1.05);
}

.faq__item:not(.is-open):hover {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .03);
}

.faq__item:not(.is-open):hover .faq__icon {
  transform: scale(1.08);
}

.faq__icon {
  transition: transform .2s ease;
}

.stats__card,
.contact__pill {
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.stats__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .3);
}

.contact__pill:hover {
  transform: translateY(-3px);
}

/* Cookie consent banner */
.cookie {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, .72);
  animation: cookie-fade .3s ease both;
}

.cookie[hidden] {
  display: none;
}

.cookie__dialog {
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px;
  background: var(--white);
  color: var(--black);
  border-radius: 36px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
  animation: cookie-pop .4s cubic-bezier(.16, 1, .3, 1) both;
}

.cookie__title {
  font-size: clamp(56px, 9vw, 96px);
  line-height: .9;
  color: var(--black);
}

.cookie__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1040px;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.35;
  color: var(--black);
  text-transform: capitalize;
}

.cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 4px;
}

.cookie__btn {
  min-width: 220px;
  padding: 22px 48px;
  border: 0;
  border-radius: 40px;
  font-size: 18px;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.cookie__btn:hover {
  transform: translateY(-2px);
  filter: brightness(.95);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .2);
}

.cookie__btn:active {
  transform: translateY(0);
}

.cookie__btn--accept {
  background: var(--yellow);
  color: var(--black);
}

.cookie__btn--decline {
  background: var(--orange);
  color: var(--white);
}

@keyframes cookie-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes cookie-pop {
  from {
    opacity: 0;
    transform: translateY(24px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 768px) {
  .header {
    padding: 10px 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    background: var(--dark);
    transition: max-height .3s ease, padding .3s ease;
  }

  .nav.is-open {
    max-height: 260px;
    padding: 8px 20px 16px;
    border-top: 1px solid rgba(255, 255, 255, .08);
  }

  .nav__link {
    padding: 12px 0;
  }

  .nav-toggle.is-active span:nth-child(1) {
    transform: translateY(5.25px) rotate(45deg);
  }

  .nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-5.25px) rotate(-45deg);
  }

  .hero {
    gap: 60px;
  }

  .hero__media {
    height: 300px;
  }

  .hero__content {
    padding: 0 20px;
  }

  .hero__title {
    font-size: 40px;
  }

  .marquee {
    height: 170px;
  }

  .about {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 40px 20px;
  }

  .about__media {
    flex: none;
    width: 100%;
    height: 200px;
  }

  .about__content {
    flex: none;
    width: 100%;
  }

  .about__heading {
    font-size: 34px;
  }

  .vtitle {
    flex: none;
    width: auto;
    align-self: auto;
    display: block;
  }

  .vtitle span {
    transform: none;
    font-size: 34px;
  }

  .why {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 40px 20px;
  }

  .why__grid {
    flex: none;
    width: 100%;
  }

  .why__title {
    order: -1;
  }

  .feature {
    flex: none;
    width: 100%;
    min-width: 0;
  }

  .stats {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px 20px;
  }

  .stats__num {
    font-size: 80px;
  }

  .stats__num--ghost {
    -webkit-text-stroke-width: 1px;
  }

  .stats__fade--top,
  .stats__fade--bottom {
    height: 47px;
  }

  .stats__card {
    flex: none;
    width: 100%;
  }

  .faq {
    gap: 20px;
    padding: 40px 20px;
  }

  .faq__heading {
    font-size: 34px;
  }

  .catalog-hero {
    gap: 20px;
    padding: 40px 20px;
  }

  .catalog-hero__title {
    font-size: 34px;
  }

  .catalog-grid {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .catalog-card--xs {
    flex: none;
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  .catalog-card--sm,
  .catalog-card--md,
  .catalog-card--lg {
    flex: none;
    max-width: 100%;
  }

  .catalog-features {
    padding: 40px 20px;
  }

  .catalog-features__grid {
    flex-direction: column;
    gap: 20px;
  }

  .catalog-features__grid .feature {
    flex: none;
    width: 100%;
    min-width: 0;
  }

  .game {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px 20px;
  }

  .game__media {
    flex: none;
    width: 100%;
    max-width: 390px;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .game__content {
    width: 100%;
  }

  .game__title {
    font-size: 34px;
  }

  .policy {
    gap: 20px;
    padding: 40px 20px;
  }

  .policy__title {
    font-size: 34px;
  }

  .contact {
    gap: 20px;
    padding: 40px 20px;
  }

  .contact__title {
    font-size: 30px;
  }

  .contact__info {
    flex-direction: column;
  }

  .contact__pill {
    width: 100%;
  }

  .footer {
    align-items: center;
    padding: 40px 20px;
  }

  .footer__brand {
    font-size: 32px;
  }

  .footer__row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer__social {
    order: 1;
  }

  .footer__menu {
    order: 2;
  }

  .footer__copy {
    order: 3;
  }

  .cookie {
    padding: 16px;
    align-items: flex-end;
  }

  .cookie__dialog {
    gap: 16px;
    padding: 28px 20px;
    border-radius: 28px;
  }

  .cookie__title {
    font-size: 44px;
  }

  .cookie__actions {
    flex-direction: column;
  }

  .cookie__btn {
    width: 100%;
    min-width: 0;
    padding: 18px 32px;
  }
}

.inline-link{color:#4ad6ff;text-decoration:underline;text-underline-offset:3px;font-weight:500}
.inline-link:hover{opacity:.85}
.editorial-meta{display:block;color:rgba(255,255,255,.78);font-size:13px;line-height:1.6;margin:6px 0 14px;letter-spacing:.02em}
.editorial-note{border-left:2px solid #4ad6ff;padding:6px 0 6px 16px;margin:18px 0;font-size:14px;line-height:1.6;color:rgba(255,255,255,.85)}
.source-line{font-size:14px;line-height:1.7;color:rgba(255,255,255,.85);margin:14px 0 0}
.dev-notice{display:block;margin:14px 0 0;font-size:12px;line-height:1.5;color:rgba(255,255,255,.65);text-align:center}
.byline{margin-bottom:8px;color:rgba(255,255,255,.78);font-size:13px;line-height:1.6}
