@import url("https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700&display=swap");

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

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

body {
  min-height: 100vh;
  font-family: "Geist", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;

  color: #000;
}

input,
button,
textarea,
select {
  font: inherit;
}

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


ul {
  list-style: none;
}

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


.site-header--legions {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  background: linear-gradient(to bottom, #f7f2ea 0%, #f3eee6 60%, #efe9df 100%);
  border-bottom: 1px solid rgba(185, 170, 145, 0.4);
  backdrop-filter: blur(10px);
}

.site-header--legions .site-header__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header--legions .site-header__logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-header--legions .site-header__logo-frame {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(174, 138, 83, 0.9);
  background: radial-gradient(circle at 30% 20%, #ffffff 0, #f4e2c5 40%, #d2b28a 80%);
  box-shadow: 0 10px 24px rgba(190, 172, 142, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header--legions .site-header__logo-image {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(140, 104, 58, 0.45);
}

.site-header--legions .site-header__burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(163, 143, 112, 0.9);
  background: rgba(255, 252, 246, 0.95);
  padding: 0;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(180, 162, 131, 0.6);
}

.site-header--legions .site-header__burger-line {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #7c5a3a, #b27837);
  margin: 0 auto;
  transition: transform 0.16s ease, opacity 0.16s ease;
}

.site-header--legions .site-header__burger--active .site-header__burger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header--legions .site-header__burger--active .site-header__burger-line:nth-child(2) {
  opacity: 0;
}

.site-header--legions .site-header__burger--active .site-header__burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-header--legions .site-header__nav {
  position: absolute;
  inset-inline: 0;
  top: 100%;
  transform: translateY(-1px);
  padding: 0.9rem 1rem 1.1rem;
  background: linear-gradient(to bottom, #f8f3ec 0%, #f3eee6 70%, #ebe4da 100%);
  border-bottom: 1px solid rgba(185, 170, 145, 0.5);
  display: none;
  flex-direction: column;
  gap: 0.75rem;
}

.site-header--legions .site-header__nav--open {
  display: flex;
}

.site-header--legions .site-header__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.site-header--legions .site-header__nav-item {
  display: flex;
  align-items: center;
}

.site-header--legions .site-header__nav-item--divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, transparent, #c29a5c, transparent);
  opacity: 0.75;
  margin: 0.2rem 0 0.4rem;
}

.site-header--legions .site-header__nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.15rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #4d3a2a;
  transition: color 0.14s ease, transform 0.14s ease, text-shadow 0.14s ease;
}

.site-header--legions .site-header__nav-link:hover,
.site-header--legions .site-header__nav-link:focus-visible {
  color: #2f2117;
  transform: translateY(-1px);
  text-shadow: 0 2px 6px rgba(201, 177, 135, 0.6);
}

.site-header--legions .site-header__cta {
  margin-top: 0.15rem;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(163, 118, 56, 0.9);
  background: linear-gradient(to right, #fdf7ec, #f0d2a0, #d79851);
  color: #3b2411;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(189, 154, 103, 0.8);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  white-space: nowrap;
}

.site-header--legions .site-header__cta:hover,
.site-header--legions .site-header__cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(177, 140, 88, 0.9);
}

.site-header--nav-open {
  overflow: hidden;
}

@media (min-width: 768px) {
  .site-header--legions .site-header__inner {
    padding-inline: 1.75rem;
  }

  .site-header--legions .site-header__burger {
    display: none;
  }

  .site-header--legions .site-header__nav {
    position: static;
    transform: none;
    padding: 0;
    background: transparent;
    border-bottom: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }

  .site-header--legions .site-header__nav-list {
    flex-direction: row;
    align-items: center;
    gap: 1.1rem;
  }

  .site-header--legions .site-header__nav-item--divider {
    width: 1px;
    height: 26px;
    margin: 0;
    background: linear-gradient(to bottom, #c29a5c, transparent);
  }

  .site-header--legions .site-header__cta {
    margin-top: 0;
  }
}

@media (min-width: 1120px) {
  .site-header--legions .site-header__inner {
    padding-inline: 2rem;
  }

  .site-header--legions .site-header__logo-frame {
    width: 50px;
    height: 50px;
  }

  .site-header--legions .site-header__logo-image {
    width: 34px;
    height: 34px;
  }

  .site-header--legions .site-header__nav-link {
    font-size: 0.92rem;
  }
}



.hero-legions {
  position: relative;
  padding: 3.2rem 1rem 3.6rem;
  background: radial-gradient(circle at top, #fdf7ee 0, #f4eee4 50%, #ece3d7 100%);
  color: #2f2419;
  overflow: hidden;
}

.hero-legions__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-legions__bg-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.65;
}

.hero-legions__bg-glow--left {
  top: -90px;
  left: -40px;
  background: radial-gradient(circle, #f2dfb5 0, transparent 65%);
}

.hero-legions__bg-glow--right {
  top: -80px;
  right: -40px;
  background: radial-gradient(circle, #e5ceaa 0, transparent 65%);
}

.hero-legions__inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
}

.hero-legions__intro {
  max-width: 720px;
  margin: 0 auto 1.8rem;
  text-align: center;
}

.hero-legions__eyebrow {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.18rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(174, 138, 83, 0.65);
  background: rgba(255, 252, 246, 0.96);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5b4632;
}

.hero-legions__title {
  margin: 0 0 0.6rem;
  font-size: 1.7rem;
  line-height: 1.25;
}

.hero-legions__lead {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.7;
  color: #4b3b2a;
}

.hero-legions__panel {
  position: relative;
  border-radius: 24px;
  background: #fdf8f0;
  border: 1px solid rgba(174, 138, 83, 0.7);
  box-shadow: 0 22px 48px rgba(160, 138, 108, 0.75);
  padding: 1.2rem 1rem 1rem;
}

.hero-legions__panel-main {
  display: grid;
  gap: 1.3rem;
}

.hero-legions__shot-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-legions__shot-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(158, 127, 81, 0.9);
  box-shadow: 0 16px 34px rgba(121, 100, 76, 0.75);
}

.hero-legions__shot-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-legions__shot-caption {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.hero-legions__shot-label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a6f4f;
}

.hero-legions__shot-text {
  font-size: 0.86rem;
  color: #3b2b1d;
}

.hero-legions__details {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hero-legions__text {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.7;
  color: #5d4833;
}

.hero-legions__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.hero-legions__point {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #3c2c1f;
}

.hero-legions__point::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, #fdf7ec 0, #d49b4b 45%, #9c6133 100%);
}

.hero-legions__panel-footer {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-legions__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  justify-content: center;
}

.hero-legions__store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(150, 135, 112, 0.65);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.hero-legions__store-link:hover,
.hero-legions__store-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(141, 123, 99, 0.8);
}

.hero-legions__store-image {
  display: block;
  height: 52px;
  width: auto;
}

.hero-legions__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.8rem;
  border-radius: 14px;
  background: rgba(255, 252, 246, 0.96);
  border: 1px solid rgba(182, 151, 99, 0.65);
}

.hero-legions__meta-item {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.hero-legions__meta-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7a6247;
}

.hero-legions__meta-value {
  font-size: 0.88rem;
  color: #3c2c1f;
}

.hero-legions__meta-divider {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, #c29a5c, transparent);
  opacity: 0.85;
}

/* Responsive */

@media (max-width: 639px) {
  .hero-legions__meta-divider {
    display: none;
  }
}

@media (min-width: 768px) {
  .hero-legions {
    padding-inline: 1.75rem;
    padding-top: 3.6rem;
  }

  .hero-legions__title {
    font-size: 1.9rem;
  }

  .hero-legions__panel {
    padding: 1.4rem 1.4rem 1.1rem;
  }

  .hero-legions__panel-main {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: center;
  }

  .hero-legions__meta {
    justify-content: flex-end;
  }

  .hero-legions__panel-footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero-legions__stores {
    justify-content: flex-start;
  }
}

@media (min-width: 1120px) {
  .hero-legions {
    padding-inline: 2rem;
    padding-top: 4rem;
  }

  .hero-legions__title {
    font-size: 2.1rem;
  }

  .hero-legions__panel {
    border-radius: 26px;
  }
}
.section-legions-desc {
  padding: 2.8rem 1rem 2.6rem;
  background: #f7f2ea;
  color: #33261a;
}

.section-legions-desc__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.section-legions-desc__text {
  max-width: 560px;
}

.section-legions-desc__title {
  margin: 0 0 0.6rem;
  font-size: 1.4rem;
}

.section-legions-desc__lead {
  margin: 0 0 0.5rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #4b3826;
}

.section-legions-desc__body {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.7;
  color: #5c4632;
}

.section-legions-desc__highlights {
  display: grid;
  gap: 0.75rem;
}

.section-legions-desc__highlight {
  border-radius: 14px;
  padding: 0.7rem 0.8rem;
  background: #fdf8f0;
  border: 1px solid rgba(176, 142, 90, 0.6);
  box-shadow: 0 8px 20px rgba(173, 149, 110, 0.55);
}

.section-legions-desc__highlight-label {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7a5d3d;
  margin-bottom: 0.25rem;
}

.section-legions-desc__highlight-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #3b2a1d;
}

.section-legions-how {
  padding: 2.6rem 1rem 2.8rem;
  background: #fdf8f0;
  color: #33261a;
}

.section-legions-how__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-legions-how__header {
  max-width: 640px;
  margin-bottom: 1.4rem;
}

.section-legions-how__title {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
}

.section-legions-how__subtitle {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.7;
  color: #4f3a29;
}

.section-legions-how__steps {
  display: grid;
  gap: 0.9rem;
}

.section-legions-how__step {
  border-radius: 16px;
  padding: 0.75rem 0.9rem;
  background: #f7f2ea;
  border: 1px solid rgba(176, 142, 90, 0.6);
  box-shadow: 0 10px 22px rgba(185, 159, 118, 0.55);
}

.section-legions-how__step-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.section-legions-how__step-index {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.86rem;
  background: radial-gradient(circle, #fdf7ec 0, #d49b4b 45%, #9c6133 100%);
  color: #27190f;
}

.section-legions-how__step-label {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7a5d3d;
}

.section-legions-how__step-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #3b2a1d;
}

.section-legions-shots {
  padding: 2.6rem 1rem 3rem;
  background: #f7f2ea;
  color: #33261a;
}

.section-legions-shots__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-legions-shots__header {
  max-width: 640px;
  margin-bottom: 1.3rem;
}

.section-legions-shots__title {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
}

.section-legions-shots__subtitle {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.7;
  color: #4f3a29;
}

.section-legions-shots__grid {
  display: grid;
  gap: 0.9rem;
}

.section-legions-shots__item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(176, 142, 90, 0.6);
  box-shadow: 0 12px 26px rgba(173, 149, 110, 0.65);
}

.section-legions-shots__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Responsive */

@media (min-width: 768px) {
  .section-legions-desc {
    padding-inline: 1.75rem;
  }

  .section-legions-how {
    padding-inline: 1.75rem;
  }

  .section-legions-shots {
    padding-inline: 1.75rem;
  }

  .section-legions-desc__inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: flex-start;
  }

  .section-legions-how__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section-legions-shots__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  .section-legions-desc {
    padding-inline: 2rem;
  }

  .section-legions-how {
    padding-inline: 2rem;
  }

  .section-legions-shots {
    padding-inline: 2rem;
  }

  .section-legions-desc__title,
  .section-legions-how__title,
  .section-legions-shots__title {
    font-size: 1.5rem;
  }
}
.section-legions-text {
  padding: 2.8rem 1rem 2.8rem;
  background: #fdf8f0;
  color: #33261a;
}

.section-legions-text__inner {
  max-width: 860px;
  margin: 0 auto;
}

.section-legions-text__title {
  margin: 0 0 1rem;
  font-size: 1.4rem;
  text-align: center;
  color: #3b2a1d;
}

.section-legions-text__paragraph {
  margin: 0 0 1rem;
  font-size: 0.96rem;
  line-height: 1.75;
  color: #4d3828;
}

@media (min-width: 1120px) {
  .section-legions-text {
    padding-inline: 2rem;
  }
  .section-legions-text__title {
    font-size: 1.55rem;
  }
}
.section-legions-cta {
  padding: 3.2rem 1rem 3.4rem;
  background: radial-gradient(circle at top, #f7f2ea 0, #f3ede4 100%);
  color: #33261a;
  text-align: center;
}

.section-legions-cta__inner {
  max-width: 760px;
  margin: 0 auto;
}

.section-legions-cta__title {
  font-size: 1.55rem;
  margin: 0 0 0.6rem;
  color: #3b2a1d;
}

.section-legions-cta__subtitle {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #4b3826;
  margin: 0 0 1.3rem;
}

.section-legions-cta__stores {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1rem;
}

.section-legions-cta__store-link {
  display: inline-flex;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(150, 135, 112, 0.65);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.section-legions-cta__store-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(141, 123, 99, 0.8);
}

.section-legions-cta__store-image {
  display: block;
  height: 54px;
  width: auto;
}

.section-legions-cta__disclaimer {
  font-size: 0.88rem;
  color: #6a5845;
  margin: 0;
}

@media (min-width: 1120px) {
  .section-legions-cta {
    padding-inline: 2rem;
  }
  .section-legions-cta__title {
    font-size: 1.75rem;
  }
}
.site-footer--legions {
  background: #f3ede4;
  color: #35281c;
  border-top: 1px solid rgba(185, 170, 145, 0.6);
}

.site-footer--legions .site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.4rem 1rem 1.8rem;
  display: grid;
  gap: 2rem;
}

.site-footer--legions .site-footer__brand {
  max-width: 360px;
}

.site-footer--legions .site-footer__logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
}

.site-footer--legions .site-footer__logo-frame {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(174, 138, 83, 0.9);
  background: radial-gradient(circle at 30% 20%, #ffffff 0, #f4e2c5 40%, #d2b28a 80%);
  box-shadow: 0 8px 20px rgba(190, 172, 142, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer--legions .site-footer__logo-image {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(140, 104, 58, 0.45);
}

.site-footer--legions .site-footer__text {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4b3826;
}

.site-footer--legions .site-footer__text--muted {
  color: #72604b;
  font-size: 0.86rem;
}

.site-footer--legions .site-footer__columns {
  display: grid;
  gap: 1.4rem;
}

.site-footer--legions .site-footer__column {
  min-width: 0;
}

.site-footer--legions .site-footer__column-title {
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #7a5d3d;
}

.site-footer--legions .site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.25rem;
}

.site-footer--legions .site-footer__link-item {
  min-width: 0;
}

.site-footer--legions .site-footer__link {
  display: inline-flex;
  font-size: 0.9rem;
  text-decoration: none;
  color: #463425;
  transition: color 0.14s ease, transform 0.14s ease;
}

.site-footer--legions .site-footer__link--static {
  cursor: default;
}

.site-footer--legions .site-footer__link:hover,
.site-footer--legions .site-footer__link:focus-visible {
  color: #261a11;
  transform: translateY(-1px);
}

.site-footer--legions .site-footer__bottom {
  border-top: 1px solid rgba(185, 170, 145, 0.6);
  background: #efe8dd;
}

.site-footer--legions .site-footer__bottom-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.8rem 1rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
}

.site-footer--legions .site-footer__copy {
  margin: 0;
  font-size: 0.84rem;
  color: #5b4733;
}

.site-footer--legions .site-footer__bottom-note {
  margin: 0;
  font-size: 0.84rem;
  color: #7a654f;
}

@media (min-width: 768px) {
  .site-footer--legions .site-footer__inner {
    padding-inline: 1.75rem;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
  }

  .site-footer--legions .site-footer__columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer--legions .site-footer__bottom-inner {
    padding-inline: 1.75rem;
  }
}

@media (min-width: 1120px) {
  .site-footer--legions .site-footer__inner {
    padding-inline: 2rem;
  }

  .site-footer--legions .site-footer__bottom-inner {
    padding-inline: 2rem;
  }
}
.privacy-legions {
  padding: 3.4rem 1rem 3rem;
  background: #f3ede4;
  color: #33261a;
}

.privacy-legions__inner {
  max-width: 980px;
  margin: 0 auto;
}

.privacy-legions__header {
  margin-bottom: 2.1rem;
}

.privacy-legions__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7a5d3d;
}

.privacy-legions__title {
  margin: 0 0 0.6rem;
  font-size: 1.7rem;
  color: #3b2a1d;
}

.privacy-legions__intro {
  margin: 0 0 0.35rem;
  font-size: 0.96rem;
  line-height: 1.7;
  color: #4d3828;
}

.privacy-legions__content {
  display: grid;
  gap: 1.7rem;
}

.privacy-legions__toc {
  padding: 1rem 0.9rem;
  border-radius: 16px;
  background: #fdf8f0;
  border: 1px solid rgba(176, 142, 90, 0.7);
  box-shadow: 0 12px 26px rgba(173, 149, 110, 0.4);
}

.privacy-legions__toc-title {
  margin: 0 0 0.5rem;
  font-size: 0.96rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #7a5d3d;
}

.privacy-legions__toc-list {
  margin: 0;
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  font-size: 0.9rem;
}

.privacy-legions__toc-link {
  text-decoration: none;
  color: #463425;
  transition: color 0.14s ease, transform 0.14s ease;
}

.privacy-legions__toc-link:hover {
  color: #261a11;
  transform: translateX(1px);
}

.privacy-legions__article {
  border-radius: 16px;
  padding: 1.2rem 1rem;
  background: #fdf8f0;
  border: 1px solid rgba(176, 142, 90, 0.7);
  box-shadow: 0 18px 42px rgba(173, 149, 110, 0.6);
}

.privacy-legions__section {
  padding-bottom: 1.15rem;
  margin-bottom: 1.15rem;
  border-bottom: 1px solid rgba(120, 93, 61, 0.18);
}

.privacy-legions__section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.privacy-legions__section-title {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  color: #3b2a1d;
}

.privacy-legions__text {
  margin: 0 0 0.4rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #4f3a29;
}

.privacy-legions__text--muted {
  font-size: 0.86rem;
  color: #7a654f;
}

.privacy-legions__list {
  margin: 0 0 0.5rem;
  padding-left: 1.1rem;
  font-size: 0.92rem;
}

.privacy-legions__list li {
  margin-bottom: 0.2rem;
  line-height: 1.6;
  color: #4f3a29;
}

.privacy-legions__link {
  color: #b27837;
  text-decoration: none;
  border-bottom: 1px dashed rgba(178, 120, 55, 0.7);
}

.privacy-legions__link:hover {
  color: #8a5a2a;
  border-color: rgba(138, 90, 42, 0.9);
}

@media (min-width: 768px) {
  .privacy-legions {
    padding-inline: 1.75rem;
    padding-top: 3.8rem;
  }

  .privacy-legions__title {
    font-size: 1.9rem;
  }

  .privacy-legions__content {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.6fr);
    gap: 2rem;
  }

  .privacy-legions__article {
    padding: 1.3rem 1.4rem;
  }
}

@media (min-width: 1120px) {
  .privacy-legions {
    padding-inline: 2rem;
  }

  .privacy-legions__title {
    font-size: 2.05rem;
  }
}
.terms-legions {
  padding: 3.4rem 1rem 3rem;
  background: #f3ede4;
  color: #33261a;
}

.terms-legions__inner {
  max-width: 980px;
  margin: 0 auto;
}

.terms-legions__header {
  margin-bottom: 2.1rem;
}

.terms-legions__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7a5d3d;
}

.terms-legions__title {
  margin: 0 0 0.6rem;
  font-size: 1.7rem;
  color: #3b2a1d;
}

.terms-legions__intro {
  margin: 0 0 0.35rem;
  font-size: 0.96rem;
  line-height: 1.7;
  color: #4d3828;
}

.terms-legions__content {
  display: grid;
  gap: 1.7rem;
}

.terms-legions__toc {
  padding: 1rem 0.9rem;
  border-radius: 16px;
  background: #fdf8f0;
  border: 1px solid rgba(176, 142, 90, 0.7);
  box-shadow: 0 12px 26px rgba(173, 149, 110, 0.4);
}

.terms-legions__toc-title {
  margin: 0 0 0.5rem;
  font-size: 0.96rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #7a5d3d;
}

.terms-legions__toc-list {
  margin: 0;
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  font-size: 0.9rem;
}

.terms-legions__toc-link {
  text-decoration: none;
  color: #463425;
  transition: color 0.14s ease, transform 0.14s ease;
}

.terms-legions__toc-link:hover {
  color: #261a11;
  transform: translateX(1px);
}

.terms-legions__article {
  border-radius: 16px;
  padding: 1.2rem 1rem;
  background: #fdf8f0;
  border: 1px solid rgba(176, 142, 90, 0.7);
  box-shadow: 0 18px 42px rgba(173, 149, 110, 0.6);
}

.terms-legions__section {
  padding-bottom: 1.15rem;
  margin-bottom: 1.15rem;
  border-bottom: 1px solid rgba(120, 93, 61, 0.18);
}

.terms-legions__section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.terms-legions__section-title {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  color: #3b2a1d;
}

.terms-legions__text {
  margin: 0 0 0.4rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #4f3a29;
}

.terms-legions__text--muted {
  font-size: 0.86rem;
  color: #7a654f;
}

.terms-legions__list {
  margin: 0 0 0.5rem;
  padding-left: 1.1rem;
  font-size: 0.92rem;
}

.terms-legions__list li {
  margin-bottom: 0.2rem;
  line-height: 1.6;
  color: #4f3a29;
}

.terms-legions__link {
  color: #b27837;
  text-decoration: none;
  border-bottom: 1px dashed rgba(178, 120, 55, 0.7);
}

.terms-legions__link:hover {
  color: #8a5a2a;
  border-color: rgba(138, 90, 42, 0.9);
}

@media (min-width: 768px) {
  .terms-legions {
    padding-inline: 1.75rem;
    padding-top: 3.8rem;
  }

  .terms-legions__title {
    font-size: 1.9rem;
  }

  .terms-legions__content {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.6fr);
    gap: 2rem;
  }

  .terms-legions__article {
    padding: 1.3rem 1.4rem;
  }
}

@media (min-width: 1120px) {
  .terms-legions {
    padding-inline: 2rem;
  }

  .terms-legions__title {
    font-size: 2.05rem;
  }
}
.legal-legions {
  padding: 3.4rem 1rem 3rem;
  background: #f3ede4;
  color: #33261a;
}

.legal-legions__inner {
  max-width: 980px;
  margin: 0 auto;
}

.legal-legions__header {
  margin-bottom: 2.1rem;
}

.legal-legions__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7a5d3d;
}

.legal-legions__title {
  margin: 0 0 0.6rem;
  font-size: 1.7rem;
  color: #3b2a1d;
}

.legal-legions__intro {
  margin: 0 0 0.35rem;
  font-size: 0.96rem;
  line-height: 1.7;
  color: #4d3828;
}

.legal-legions__content {
  display: grid;
  gap: 1.7rem;
}

.legal-legions__sidebar {
  padding: 1rem 0.9rem;
  border-radius: 16px;
  background: #fdf8f0;
  border: 1px solid rgba(176, 142, 90, 0.7);
  box-shadow: 0 12px 26px rgba(173, 149, 110, 0.4);
}

.legal-legions__sidebar-title {
  margin: 0 0 0.45rem;
  font-size: 0.96rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #7a5d3d;
}

.legal-legions__sidebar-list {
  margin: 0;
  padding-left: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.9rem;
}

.legal-legions__sidebar-link {
  text-decoration: none;
  color: #463425;
  transition: color 0.14s ease, transform 0.14s ease;
}

.legal-legions__sidebar-link:hover {
  color: #261a11;
  transform: translateX(1px);
}

.legal-legions__article {
  border-radius: 16px;
  padding: 1.2rem 1rem;
  background: #fdf8f0;
  border: 1px solid rgba(176, 142, 90, 0.7);
  box-shadow: 0 18px 42px rgba(173, 149, 110, 0.6);
}

.legal-legions__section {
  padding-bottom: 1.15rem;
  margin-bottom: 1.15rem;
  border-bottom: 1px solid rgba(120, 93, 61, 0.18);
}

.legal-legions__section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-legions__section-title {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  color: #3b2a1d;
}

.legal-legions__text {
  margin: 0 0 0.4rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #4f3a29;
}

.legal-legions__text--muted {
  font-size: 0.86rem;
  color: #7a654f;
}

.legal-legions__link {
  color: #b27837;
  text-decoration: none;
  border-bottom: 1px dashed rgba(178, 120, 55, 0.7);
}

.legal-legions__link:hover {
  color: #8a5a2a;
  border-color: rgba(138, 90, 42, 0.9);
}

@media (min-width: 768px) {
  .legal-legions {
    padding-inline: 1.75rem;
    padding-top: 3.8rem;
  }

  .legal-legions__title {
    font-size: 1.9rem;
  }

  .legal-legions__content {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.7fr);
    gap: 2rem;
  }

  .legal-legions__article {
    padding: 1.3rem 1.4rem;
  }
}

@media (min-width: 1120px) {
  .legal-legions {
    padding-inline: 2rem;
  }

  .legal-legions__title {
    font-size: 2.05rem;
  }
}
