@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=Syne:wght@700;800;900&display=swap');

:root {
  --c-bg: #f7f5f1;
  --c-bg-alt: #eceae4;
  --c-bg-dark: #1e2420;
  --c-white: #ffffff;
  --c-primary: #1a5c4a;
  --c-primary-dk: #0e3d32;
  --c-primary-lt: rgba(26,92,74,.08);
  --c-accent: #d4651a;
  --c-accent-dk: #b85516;
  --c-accent-lt: rgba(212,101,26,.1);
  --c-gold: #c99b2a;
  --c-text: #1c1c1e;
  --c-text-2: #5a5a60;
  --c-text-3: #9898a0;
  --c-border: #d4d0c8;
  --c-border-lt: #e8e5de;
  --c-shadow: rgba(28,28,30,.08);
  --c-shadow-md: rgba(28,28,30,.14);
  --r: 12px;
  --r-sm: 6px;
  --r-xl: 24px;
  --tr: .25s ease;
  --max-w: 1260px;
  --gap: 28px;
}

*, ::before, ::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--c-primary);
  text-decoration: none;
  transition: color var(--tr);
}

a:hover {
  color: var(--c-primary-dk);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.st-wrap {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

.st-sec {
  padding-block: 88px;
}

.st-sec--alt {
  background: var(--c-bg-alt);
}

.st-sec--dark {
  background: var(--c-bg-dark);
}

.st-sec__head {
  margin-bottom: 56px;
}

.st-sec__head--center {
  text-align: center;
}

.st-sec__head--center .st-sec__sub {
  margin-inline: auto;
}

.st-sec__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 14px;
}

.st-sec__label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-accent);
  border-radius: 2px;
}

.st-sec__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--c-text);
  margin-bottom: 18px;
}

.st-sec--dark .st-sec__title {
  color: var(--c-white);
}

.st-sec__title mark {
  background: none;
  color: var(--c-primary);
}

.st-sec__sub {
  font-size: 1rem;
  color: var(--c-text-2);
  line-height: 1.75;
  max-width: 560px;
}

.st-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  font-size: .9rem;
  font-weight: 600;
  transition: all var(--tr);
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.st-btn--primary {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
}

.st-btn--primary:hover {
  background: var(--c-primary-dk);
  border-color: var(--c-primary-dk);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,92,74,.3);
}

.st-btn--secondary {
  background: var(--c-accent);
  color: var(--c-white);
  border-color: var(--c-accent);
}

.st-btn--secondary:hover {
  background: var(--c-accent-dk);
  border-color: var(--c-accent-dk);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,101,26,.3);
}

.st-btn--ghost {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-primary);
}

.st-btn--ghost:hover {
  background: var(--c-primary);
  color: var(--c-white);
  transform: translateY(-2px);
}

.st-btn--ghost-white {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,.4);
}

.st-btn--ghost-white:hover {
  background: rgba(255,255,255,.12);
  color: var(--c-white);
  border-color: var(--c-white);
}

.st-btn--sm {
  padding: 9px 18px;
  font-size: .82rem;
}

.st-btn--lg {
  padding: 16px 34px;
  font-size: 1rem;
}

.st-hdr {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 900;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow var(--tr);
}

.st-hdr.is-scrolled {
  box-shadow: 0 4px 24px var(--c-shadow-md);
}

.st-hdr__strip {
  height: 4px;
  background: linear-gradient(90deg, var(--c-primary) 0%, var(--c-accent) 100%);
}

.st-nav {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.st-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.st-nav__list--right {
  justify-content: flex-end;
}

.st-nav__link {
  padding: 7px 11px;
  border-radius: var(--r-sm);
  color: var(--c-text-2);
  font-size: .87rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--tr);
}

.st-nav__link:hover,
.st-nav__link.is-active {
  color: var(--c-primary);
  background: var(--c-primary-lt);
}

.st-nav__link--cta {
  background: var(--c-accent);
  color: var(--c-white) !important;
  margin-left: 8px;
  border-radius: var(--r-sm);
}

.st-nav__link--cta:hover {
  background: var(--c-accent-dk);
  color: var(--c-white) !important;
}

.st-nav__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  padding-inline: 28px;
  flex-shrink: 0;
}

.st-nav__brand-logo {
  height: 32px;
  width: auto;
}

.st-nav__brand-name {
  font-family: 'Syne', sans-serif;
  font-size: .75rem;
  font-weight: 900;
  color: var(--c-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.st-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.st-nav__line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all .3s ease;
}

.st-nav__toggle.is-active .st-nav__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.st-nav__toggle.is-active .st-nav__line:nth-child(2) {
  opacity: 0;
}

.st-nav__toggle.is-active .st-nav__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.st-nav__drawer {
  display: none;
  position: fixed;
  top: 70px;
  inset-inline: 0;
  bottom: 0;
  background: var(--c-white);
  overflow-y: auto;
  padding: 12px 16px 32px;
  z-index: 880;
  border-top: 1px solid var(--c-border);
}

.st-nav__drawer.is-open {
  display: block;
}

.st-nav__mobile-link {
  display: block;
  padding: 14px 16px;
  color: var(--c-text);
  font-size: .9rem;
  font-weight: 500;
  border-bottom: 1px solid var(--c-border-lt);
  text-decoration: none;
  transition: color var(--tr);
}

.st-nav__mobile-link:hover {
  color: var(--c-primary);
}

.st-nav__mobile-link--cta {
  background: var(--c-accent);
  color: var(--c-white) !important;
  border: none;
  border-radius: var(--r-sm);
  margin-top: 20px;
  text-align: center;
  font-weight: 600;
}

.st-nav__mobile-link--cta:hover {
  background: var(--c-accent-dk);
  color: var(--c-white) !important;
}

.st-hero {
  padding-top: 70px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.st-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.st-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.92);
}

.st-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(247,245,241,.96) 0%, rgba(247,245,241,.88) 45%, rgba(247,245,241,.55) 100%);
}

.st-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
  padding-block: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.st-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 22px;
}

.st-hero__kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  flex-shrink: 0;
}

.st-hero__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.06;
  color: var(--c-text);
  margin-bottom: 22px;
}

.st-hero__title em {
  font-style: normal;
  color: var(--c-primary);
}

.st-hero__desc {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: var(--c-text-2);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

.st-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}

.st-hero__metrics {
  display: flex;
  gap: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--c-border);
}

.st-hero__metric-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--c-primary);
  line-height: 1;
}

.st-hero__metric-lbl {
  font-size: .75rem;
  font-weight: 500;
  color: var(--c-text-3);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.st-hero__visual {
  position: relative;
}

.st-hero__visual-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: 0 20px 60px var(--c-shadow-md);
}

.st-hero__visual-tag {
  position: absolute;
  bottom: -14px;
  right: -14px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  padding: 14px 18px;
  box-shadow: 0 8px 28px var(--c-shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

.st-hero__visual-tag-icon {
  width: 36px;
  height: 36px;
  background: var(--c-accent-lt);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  font-size: .95rem;
  flex-shrink: 0;
}

.st-hero__visual-tag strong {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 2px;
}

.st-hero__visual-tag span {
  font-size: .75rem;
  color: var(--c-text-3);
}

.st-grid {
  display: grid;
  gap: var(--gap);
}

.st-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.st-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.st-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.st-grid--auto3 {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.st-feat {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  padding: 28px;
  transition: all var(--tr);
}

.st-feat:hover {
  border-color: var(--c-primary);
  transform: translate(-3px, -3px);
  box-shadow: 4px 4px 0 var(--c-primary);
}

.st-feat__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.st-feat__icon--green {
  background: var(--c-primary-lt);
  color: var(--c-primary);
}

.st-feat__icon--orange {
  background: var(--c-accent-lt);
  color: var(--c-accent);
}

.st-feat__icon--gold {
  background: rgba(201,155,42,.1);
  color: var(--c-gold);
}

.st-feat__icon--teal {
  background: rgba(32,178,170,.1);
  color: #20b2aa;
}

.st-feat__title {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 10px;
}

.st-feat__text {
  font-size: .9rem;
  color: var(--c-text-2);
  line-height: 1.7;
}

.st-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  overflow: hidden;
  transition: all var(--tr);
  display: flex;
  flex-direction: column;
}

.st-card:hover {
  box-shadow: 0 12px 36px var(--c-shadow-md);
  transform: translateY(-4px);
  border-color: var(--c-border-lt);
}

.st-card__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--c-bg-alt);
}

.st-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.st-card:hover .st-card__thumb img {
  transform: scale(1.05);
}

.st-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--c-primary);
  color: var(--c-white);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.st-card__tag--orange {
  background: var(--c-accent);
}

.st-card__tag--gold {
  background: var(--c-gold);
}

.st-card__content {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.st-card__cat {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--c-accent);
  margin-bottom: 10px;
}

.st-card__heading {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-text);
  line-height: 1.25;
  margin-bottom: 10px;
  flex: 1;
}

.st-card__heading a {
  color: inherit;
  text-decoration: none;
}

.st-card__heading a:hover {
  color: var(--c-primary);
}

.st-card__excerpt {
  font-size: .875rem;
  color: var(--c-text-2);
  line-height: 1.7;
  margin-bottom: 16px;
}

.st-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--c-border-lt);
  font-size: .78rem;
  color: var(--c-text-3);
}

.st-card__more {
  font-size: .8rem;
  font-weight: 600;
  color: var(--c-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.st-card__more:hover {
  color: var(--c-primary-dk);
}

.st-game {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  overflow: hidden;
  transition: all var(--tr);
}

.st-game:hover {
  box-shadow: 0 8px 28px var(--c-shadow-md);
  transform: translateY(-3px);
}

.st-game__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
  background: var(--c-bg-alt);
}

.st-game__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.st-game:hover .st-game__media img {
  transform: scale(1.07);
}

.st-game__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--c-primary);
  color: var(--c-white);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 9px;
  border-radius: 4px;
  z-index: 1;
}

.st-game__badge--orange {
  background: var(--c-accent);
}

.st-game__body {
  padding: 16px 18px 18px;
}

.st-game__name {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 6px;
}

.st-game__desc {
  font-size: .82rem;
  color: var(--c-text-2);
  line-height: 1.6;
  margin-bottom: 12px;
}

.st-game__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.st-game__stars {
  color: var(--c-gold);
  font-size: .8rem;
  display: flex;
  align-items: center;
  gap: 3px;
}

.st-game__type {
  font-size: .75rem;
  color: var(--c-text-3);
  background: var(--c-bg-alt);
  padding: 3px 8px;
  border-radius: 4px;
}

.st-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
}

.st-badge--green {
  background: var(--c-primary-lt);
  color: var(--c-primary);
}

.st-badge--orange {
  background: var(--c-accent-lt);
  color: var(--c-accent);
}

.st-badge--gold {
  background: rgba(201,155,42,.12);
  color: var(--c-gold);
}

.st-crumb-bar {
  background: var(--c-bg-alt);
  border-bottom: 1px solid var(--c-border);
  padding-block: 12px;
}

.st-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  color: var(--c-text-2);
}

.st-crumb a {
  color: var(--c-text-2);
  text-decoration: none;
  transition: color var(--tr);
}

.st-crumb a:hover {
  color: var(--c-primary);
}

.st-crumb__sep {
  color: var(--c-border);
  font-size: .65rem;
}

.st-crumb__cur {
  color: var(--c-text);
}

.st-pg-head {
  background: var(--c-bg-alt);
  padding: 96px 0 56px;
  position: relative;
  overflow: hidden;
}

.st-pg-head::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 48px;
  background: var(--c-bg);
  clip-path: ellipse(60% 100% at 50% 100%);
}

.st-pg-head__inner {
  position: relative;
  z-index: 1;
}

.st-pg-head__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--c-text);
  margin-bottom: 14px;
  line-height: 1.1;
}

.st-pg-head__desc {
  font-size: 1rem;
  color: var(--c-text-2);
  max-width: 580px;
  line-height: 1.75;
}

.st-faq__item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color var(--tr);
}

.st-faq__item.is-open {
  border-color: var(--c-primary);
}

.st-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--c-text);
  cursor: pointer;
  text-align: left;
  transition: color var(--tr);
  background: none;
  border: none;
  font-family: inherit;
}

.st-faq__q:hover {
  color: var(--c-primary);
}

.st-faq__icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--c-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  font-size: .72rem;
  flex-shrink: 0;
  transition: all var(--tr);
}

.st-faq__item.is-open .st-faq__icon {
  background: var(--c-primary);
  color: var(--c-white);
  transform: rotate(180deg);
}

.st-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.st-faq__a.is-visible {
  max-height: 480px;
}

.st-faq__a-inner {
  padding: 0 22px 18px;
  font-size: .9rem;
  color: var(--c-text-2);
  line-height: 1.8;
}

.st-table-wrap {
  overflow-x: auto;
  border-radius: var(--r);
  border: 1px solid var(--c-border);
}

.st-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-white);
}

.st-table th {
  background: var(--c-primary);
  color: var(--c-white);
  font-family: 'Syne', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  padding: 14px 18px;
  text-align: left;
  white-space: nowrap;
}

.st-table th:first-child {
  background: var(--c-primary-dk);
}

.st-table td {
  padding: 13px 18px;
  font-size: .875rem;
  color: var(--c-text-2);
  border-bottom: 1px solid var(--c-border-lt);
}

.st-table tr:last-child td {
  border-bottom: none;
}

.st-table tr:nth-child(even) td {
  background: var(--c-bg);
}

.st-table td:first-child {
  font-weight: 600;
  color: var(--c-text);
}

.st-table .st-check {
  color: var(--c-primary);
}

.st-table .st-cross {
  color: var(--c-text-3);
}

.st-art-head {
  padding: 92px 0 64px;
  background: var(--c-bg-alt);
  position: relative;
}

.st-art-head::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--c-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.st-art-head__inner {
  position: relative;
  z-index: 1;
}

.st-art-type {
  display: inline-block;
  background: var(--c-primary-lt);
  color: var(--c-primary);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 13px;
  border-radius: 50px;
  border: 1px solid rgba(26,92,74,.2);
  margin-bottom: 18px;
}

.st-art-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--c-text);
  line-height: 1.12;
  margin-bottom: 20px;
  max-width: 800px;
}

.st-art-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  font-size: .82rem;
  color: var(--c-text-3);
}

.st-art-meta i {
  color: var(--c-accent);
  margin-right: 4px;
}

.st-art-feat-img {
  width: 100%;
  aspect-ratio: 21/8;
  object-fit: cover;
  border-radius: var(--r);
  margin-bottom: 44px;
}

.st-art-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.st-art-body h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--c-text);
  margin: 40px 0 16px;
}

.st-art-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-primary);
  margin: 28px 0 12px;
}

.st-art-body h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  margin: 22px 0 8px;
}

.st-art-body h5 {
  font-size: .9rem;
  font-weight: 600;
  color: var(--c-text-2);
  margin: 18px 0 8px;
}

.st-art-body p {
  font-size: .97rem;
  color: var(--c-text);
  line-height: 1.88;
  margin-bottom: 18px;
}

.st-art-body ul, .st-art-body ol {
  margin: 0 0 18px 22px;
  color: var(--c-text);
}

.st-art-body li {
  margin-bottom: 8px;
  font-size: .95rem;
  line-height: 1.7;
}

.st-art-body blockquote {
  border-left: 3px solid var(--c-primary);
  padding: 16px 20px;
  margin: 28px 0;
  background: var(--c-primary-lt);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  color: var(--c-primary-dk);
  font-size: .95rem;
  font-style: italic;
}

.st-sidebar__widget {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  padding: 22px;
  margin-bottom: 22px;
}

.st-sidebar__widget-title {
  font-family: 'Syne', sans-serif;
  font-size: .85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--c-text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--c-primary);
}

.st-sidebar__post {
  display: flex;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--c-border-lt);
}

.st-sidebar__post:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.st-sidebar__post-img {
  width: 60px;
  height: 54px;
  border-radius: var(--r-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.st-sidebar__post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.st-sidebar__post-title {
  font-size: .83rem;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.35;
  margin-bottom: 4px;
}

.st-sidebar__post-title a {
  color: inherit;
  text-decoration: none;
}

.st-sidebar__post-title a:hover {
  color: var(--c-primary);
}

.st-sidebar__post-date {
  font-size: .72rem;
  color: var(--c-text-3);
}

.st-sidebar__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.st-sidebar__link {
  font-size: .87rem;
  color: var(--c-text-2);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid var(--c-border-lt);
  transition: color var(--tr);
}

.st-sidebar__link:hover {
  color: var(--c-primary);
}

.st-sidebar__link i {
  color: var(--c-primary);
  width: 14px;
  font-size: .75rem;
}

.st-contact-box {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  padding: 28px;
}

.st-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.st-contact-item:last-child {
  margin-bottom: 0;
}

.st-contact-icon {
  width: 42px;
  height: 42px;
  background: var(--c-primary-lt);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  font-size: .95rem;
  flex-shrink: 0;
}

.st-contact-icon--orange {
  background: var(--c-accent-lt);
  color: var(--c-accent);
}

.st-contact-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-text-3);
  margin-bottom: 3px;
}

.st-contact-val {
  font-size: .9rem;
  color: var(--c-text);
  line-height: 1.5;
}

.st-contact-val a {
  color: var(--c-text);
  text-decoration: none;
}

.st-contact-val a:hover {
  color: var(--c-primary);
}

.st-map {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--c-border);
}

.st-map iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}

.st-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.st-social__a {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-2);
  font-size: .85rem;
  transition: all var(--tr);
  text-decoration: none;
}

.st-social__a:hover {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: var(--c-white);
  transform: translateY(-2px);
}

.st-cta {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.st-cta__bg {
  position: absolute;
  inset: 0;
  background: var(--c-primary);
}

.st-cta__pattern {
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image: repeating-linear-gradient(45deg, var(--c-white) 0, var(--c-white) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}

.st-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.st-cta__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--c-white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.st-cta__text {
  font-size: 1rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 36px;
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.75;
}

.st-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.st-cta__btn {
  background: var(--c-white);
  color: var(--c-primary);
  border-color: var(--c-white);
}

.st-cta__btn:hover {
  background: var(--c-bg-alt);
  color: var(--c-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
}

.st-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.st-step {
  display: flex;
  gap: 20px;
  position: relative;
  padding-bottom: 32px;
}

.st-step:last-child {
  padding-bottom: 0;
}

.st-step::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: var(--c-border);
}

.st-step:last-child::before {
  display: none;
}

.st-step__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-primary);
  color: var(--c-white);
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.st-step__body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 6px;
}

.st-step__body p {
  font-size: .88rem;
  color: var(--c-text-2);
  line-height: 1.7;
}

.st-notice {
  background: var(--c-primary-lt);
  border: 1px solid rgba(26,92,74,.2);
  border-radius: var(--r-sm);
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.st-notice i {
  color: var(--c-primary);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.st-notice p {
  font-size: .875rem;
  color: var(--c-primary-dk);
  line-height: 1.7;
  margin: 0;
}

.st-notice--orange {
  background: var(--c-accent-lt);
  border-color: rgba(212,101,26,.2);
}

.st-notice--orange i, .st-notice--orange p {
  color: var(--c-accent-dk);
}

.st-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.st-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-sm);
  aspect-ratio: 4/3;
  background: var(--c-bg-alt);
  cursor: pointer;
}

.st-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.st-gallery__item:hover img {
  transform: scale(1.08);
}

.st-gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,92,74,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--tr);
}

.st-gallery__item:hover .st-gallery__overlay {
  opacity: 1;
}

.st-gallery__overlay i {
  color: var(--c-white);
  font-size: 1.7rem;
}

.st-pg-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  padding-top: 110px;
}

.st-pg-404__code {
  font-family: 'Syne', sans-serif;
  font-size: clamp(5rem, 16vw, 11rem);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 3px var(--c-primary);
  margin-bottom: 4px;
}

.st-pg-404__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 14px;
}

.st-pg-404__text {
  font-size: 1rem;
  color: var(--c-text-2);
  max-width: 440px;
  margin-inline: auto;
  margin-bottom: 36px;
  line-height: 1.75;
}

.st-foot {
  background: var(--c-bg-dark);
  padding: 68px 0 0;
}

.st-foot__grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.4fr;
  gap: 48px;
  margin-bottom: 56px;
}

.st-foot__brand-logo {
  height: 32px;
  width: auto;
  margin-bottom: 14px;
}

.st-foot__brand-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--c-white);
  margin-bottom: 12px;
  letter-spacing: .5px;
}

.st-foot__brand-desc {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 280px;
}

.st-foot__col-title {
  font-family: 'Syne', sans-serif;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--c-accent);
  margin-bottom: 20px;
}

.st-foot__links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.st-foot__link {
  font-size: .87rem;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--tr);
}

.st-foot__link:hover {
  color: var(--c-white);
}

.st-foot__link i {
  font-size: .65rem;
  color: var(--c-accent);
}

.st-foot__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}

.st-foot__contact-item i {
  color: var(--c-accent);
  width: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.st-foot__contact-item a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color var(--tr);
}

.st-foot__contact-item a:hover {
  color: var(--c-white);
}

.st-foot__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.st-foot__copy {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}

.st-foot__legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.st-foot__legal a {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: color var(--tr);
}

.st-foot__legal a:hover {
  color: var(--c-white);
}

.st-foot .st-social__a {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.45);
}

.st-foot .st-social__a:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-white);
}

.reveal-up {
  opacity: 0;
  transform: translateY(22px) scale(.99);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal-up.is-shown {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

.u-tc { text-align: center; }
.u-tl { text-align: left; }
.u-mt4 { margin-top: 4px; }
.u-mt8 { margin-top: 8px; }
.u-mt16 { margin-top: 16px; }
.u-mt24 { margin-top: 24px; }
.u-mt32 { margin-top: 32px; }
.u-mt48 { margin-top: 48px; }
.u-mb16 { margin-bottom: 16px; }
.u-mb24 { margin-bottom: 24px; }
.u-mb32 { margin-bottom: 32px; }
.u-fw6 { font-weight: 600; }
.u-c-primary { color: var(--c-primary); }
.u-c-accent { color: var(--c-accent); }
.u-c-muted { color: var(--c-text-2); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.body-locked {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .st-foot__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .st-foot__brand { grid-column: span 2; }
  .st-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .st-nav__list { display: none; }
  .st-nav__brand { margin-right: auto; }
  .st-nav__toggle { display: flex; }
  .st-hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .st-hero__visual { display: none; }
  .st-art-layout { grid-template-columns: 1fr; }
  .st-grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .st-sec { padding-block: 60px; }
  .st-grid--2 { grid-template-columns: 1fr; }
  .st-grid--3 { grid-template-columns: 1fr; }
  .st-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .st-foot__grid { grid-template-columns: 1fr; }
  .st-foot__brand { grid-column: span 1; }
  .st-foot__bottom { flex-direction: column; text-align: center; }
  .st-cta__actions { flex-direction: column; align-items: center; }
  .st-hero__metrics { flex-wrap: wrap; gap: 18px; }
  .st-gallery { grid-template-columns: repeat(2, 1fr); }
  .st-hero__actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 400px) {
  .st-grid--4 { grid-template-columns: 1fr; }
  .st-gallery { grid-template-columns: 1fr; }
}
