html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "Charis SIL", Georgia, serif;
  font-weight: 400;
}

* {
  box-sizing: border-box;
}

body {
  background: #13090A;
  color: #F6E7BF;
}

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

img {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #13090A 0%, #1A0D0E 55%, #221112 100%);
  color: #FFD83A;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.desktop-header,
.mobile-header {
  max-width: 1240px;
  margin: 0 auto;
  min-height: 76px;
  padding: 0 20px;
  align-items: center;
}

.desktop-header {
  display: flex;
  gap: 18px;
}

.mobile-header {
  display: none;
  grid-template-columns: 52px 1fr auto;
  gap: 10px;
}

.brand img,
.mobile-logo img,
.drawer-logo img,
.footer-logo img {
  width: auto;
  height: 48px;
  object-fit: contain;
}

.brand {
  flex: 0 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1 1 auto;
  min-width: 0;
}

.nav a,
.text-link,
.meta-text,
.small-note {
  font-family: "Charis SIL", Georgia, serif;
  font-weight: 700;
}

.nav a {
  color: #FFD83A;
  padding: 8px 9px;
  border-radius: 0;
  white-space: nowrap;
  line-height: 1;
  font-size: 15px;
}

.nav a.active,
.nav a:hover {
  color: #FFD83A;
  background: transparent;
  box-shadow: inset 0 -2px 0 #D60013;
}

.login-btn,
.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 18px;
  font-family: "Charis SIL", Georgia, serif;
  font-weight: 700;
  background: linear-gradient(180deg, #F10A17 0%, #D60013 45%, #A8000E 100%);
  color: #FFD83A;
  border: 1px solid rgba(255,216,58,0.28);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(214,0,19,0.28);
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease;
}

.login-btn:hover,
.primary-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(214,0,19,0.38);
}

.menu-toggle,
.drawer-close,
.banner-arrow {
  font-family: "Charis SIL", Georgia, serif;
  font-weight: 700;
  border: 1px solid rgba(255,216,58,0.22);
  color: #FFD83A;
  background: #1A0D0E;
  cursor: pointer;
}

.menu-toggle {
  width: 46px;
  height: 42px;
  border-radius: 10px;
  font-size: 24px;
}

.mobile-logo {
  display: flex;
  justify-content: center;
}

.mobile-login {
  padding: 9px 12px;
  min-height: 38px;
  font-size: 13px;
}

.site-main {
  width: 100%;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.banner-slider {
  max-width: 1200px;
  margin: 28px auto 36px;
  border-radius: 22px;
  background: linear-gradient(135deg, #13090A 0%, #1A0D0E 48%, #221112 100%);
  border: 1px solid rgba(255,216,58,0.16);
  box-shadow: 0 18px 42px rgba(0,0,0,0.35);
  overflow: hidden;
  position: relative;
}

.banner-track {
  display: flex;
  transition: transform .55s ease;
}

.banner-slide {
  min-width: 100%;
  background: radial-gradient(circle at 30% 10%, rgba(241,10,23,.16), transparent 38%), #1A0D0E;
}

.banner-slider img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
}

.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 28px;
  background: rgba(19,9,10,.76);
  backdrop-filter: blur(4px);
}

.banner-arrow.prev {
  left: 16px;
}

.banner-arrow.next {
  right: 16px;
}

.banner-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.banner-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 1px solid #FFD83A;
  background: rgba(255,216,58,.18);
  cursor: pointer;
}

.banner-dot.active {
  background: #D60013;
  box-shadow: 0 0 16px rgba(241,10,23,.7);
}

h1,
.page-title,
.hero-title {
  font-family: "Charis SIL", Georgia, serif;
  font-weight: 700;
  color: #FFD83A;
  line-height: 1.1;
}

h2,
.section-title {
  font-family: "Charis SIL", Georgia, serif;
  font-weight: 700;
  color: #FFD83A;
  line-height: 1.2;
}

h3,
.card-title,
.zone-card h3,
.info-card h3 {
  font-family: "Charis SIL", Georgia, serif;
  font-weight: 700;
  color: #FFD83A;
}

p,
li,
.faq-answer,
.section-desc,
.card p,
.zone-card p,
.info-card p {
  font-family: "Charis SIL", Georgia, serif;
  font-weight: 400;
  color: #F6E7BF;
}

p {
  line-height: 1.75;
}

.section {
  padding: 58px 0;
}

.section.tight {
  padding: 34px 0;
}

.section-head {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-title {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
}

.section-desc {
  margin: 0;
  color: #D5C29A;
  font-size: 17px;
}

.intro-strip,
.responsible-panel,
.app-section,
.page-hero,
.highlight-panel {
  background: linear-gradient(135deg, #1A0D0E 0%, #221112 54%, #1B1112 100%);
  border: 1px solid rgba(255,216,58,0.14);
  box-shadow: 0 16px 40px rgba(0,0,0,0.30);
  border-radius: 22px;
}

.intro-strip {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
}

.intro-strip p,
.responsible-panel p,
.highlight-panel p {
  margin: 0;
}

.intro-visual img,
.hero-visual img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  border-radius: 18px;
  background: #13090A;
}

.quick-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.quick-pills a {
  border: 1px solid rgba(214,0,19,.58);
  background: #1A0D0E;
  color: #FFD83A;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  box-shadow: inset 0 0 18px rgba(214,0,19,.12);
}

.quick-pills a:hover {
  background: #221112;
  border-color: #FFD83A;
}

.grid-4,
.grid-3,
.grid-2,
.zone-wall,
.safety-grid,
.faq-grid {
  display: grid;
  gap: 20px;
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.zone-wall {
  grid-template-columns: repeat(3, 1fr);
}

.safety-grid {
  grid-template-columns: repeat(3, 1fr);
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
}

.card,
.zone-card,
.info-card,
.faq-item {
  background: #1B1112;
  border: 1px solid rgba(255,216,58,0.14);
  box-shadow: 0 16px 40px rgba(0,0,0,0.30);
  color: #F6E7BF;
  border-radius: 18px;
}

.card,
.info-card,
.faq-item {
  padding: 22px;
}

.category-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.category-card .media {
  padding: 12px 12px 0;
}

.category-card img,
.zone-card img,
.content-img,
.app-section img,
.promo-banner img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.category-card img {
  width: 100%;
  max-height: 145px;
  border-radius: 14px;
  background: #13090A;
}

.category-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.category-card h3,
.zone-card h3,
.info-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.category-card p,
.zone-card p,
.info-card p,
.faq-item p {
  color: #D5C29A;
  margin: 0 0 14px;
}

.text-link {
  color: #FFD83A;
  display: inline-flex;
  margin-top: auto;
}

.text-link:hover {
  color: #FFC928;
  text-decoration: underline;
}

.number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 12px;
  color: #FFD83A;
  background: #241516;
  border: 1px solid rgba(255,216,58,.18);
  font-weight: 700;
}

.check-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  margin: 9px 0;
  color: #F6E7BF;
}

.check-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #FFD83A;
  font-weight: 700;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
  margin: 24px 0;
}

.feature-row.reverse .feature-text {
  order: 1;
}

.feature-row.reverse .feature-media {
  order: 2;
}

.feature-media {
  background: #1A0D0E;
  border-radius: 20px;
  border: 1px solid rgba(255,216,58,.14);
  padding: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.30);
}

.feature-media img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  border-radius: 16px;
}

.feature-text {
  padding: 10px 6px;
}

.feature-text h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 36px);
}

.feature-text p {
  color: #D5C29A;
}

.app-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 30px;
  align-items: center;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.app-section:before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -70px;
  top: -80px;
  background: radial-gradient(circle, rgba(214,0,19,.28), transparent 70%);
}

.app-section img {
  width: 100%;
  max-height: 360px;
  border-radius: 18px;
  background: #13090A;
  position: relative;
}

.app-section > div {
  position: relative;
}

.zone-card {
  overflow: hidden;
}

.zone-card .zone-visual {
  min-height: 150px;
  background: radial-gradient(circle at 28% 20%, rgba(255,216,58,.25), transparent 45%), linear-gradient(135deg, #241516, #1A0D0E);
  display: flex;
  align-items: center;
  justify-content: center;
}

.zone-card img {
  width: 100%;
  max-height: 175px;
  padding: 12px;
}

.zone-card .zone-body {
  padding: 20px;
}

.tag {
  display: inline-flex;
  margin-bottom: 10px;
  color: #FFD83A;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
}

.graphic-mark {
  width: 92px;
  height: 92px;
  border-radius: 28px;
  background: linear-gradient(180deg, #F10A17, #A8000E);
  border: 1px solid rgba(255,216,58,.3);
  box-shadow: 0 16px 34px rgba(214,0,19,.2);
  display: grid;
  place-items: center;
  color: #FFD83A;
  font-size: 32px;
  font-weight: 700;
}

.faq-item h3 {
  margin-top: 0;
}

.responsible-panel,
.highlight-panel {
  padding: 28px;
}

.page-hero {
  margin: 34px auto 26px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}

.page-hero.no-image {
  grid-template-columns: 1fr;
}

.page-kicker {
  color: #FFC928;
  font-weight: 700;
  letter-spacing: .03em;
  margin: 0 0 8px;
}

.page-title {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 56px);
}

.page-lead {
  color: #D5C29A;
  font-size: 18px;
  margin: 0;
}

.content-block {
  background: #1A0D0E;
  border: 1px solid rgba(255,216,58,0.12);
  border-radius: 20px;
  padding: 28px;
  margin: 22px 0;
}

.content-block h2 {
  margin-top: 0;
}

.content-block p,
.content-block li {
  color: #D5C29A;
}

.notice-box {
  border-left: 4px solid #D60013;
  background: #241516;
  padding: 18px 20px;
  border-radius: 14px;
  margin: 22px 0;
}

.notice-box strong {
  color: #FFD83A;
}

.page-list {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.page-list li {
  background: #241516;
  border: 1px solid rgba(255,216,58,.12);
  border-radius: 14px;
  padding: 14px 16px;
}

.table-like {
  display: grid;
  gap: 12px;
}

.table-like div {
  padding: 16px;
  border-radius: 14px;
  background: #241516;
  border: 1px solid rgba(255,216,58,.12);
}

.site-footer {
  background: #0E0607;
  color: #F7D976;
  margin-top: 54px;
  padding: 46px 0 20px;
  border-top: 1px solid rgba(255,216,58,.12);
}

.footer-grid {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1fr;
  gap: 26px;
}

.site-footer h3 {
  margin-top: 0;
  color: #FFD83A;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: #F7D976;
}

.site-footer p {
  color: #F7D976;
}

.footer-brand .footer-login {
  display: inline-flex;
  margin-top: 10px;
}

.footer-bottom {
  width: min(1200px, calc(100% - 40px));
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,216,58,.1);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #D5C29A;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,.58);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
  width: 84vw;
  max-width: 320px;
  height: 100vh;
  overflow-y: auto;
  transform: translateX(-105%);
  transition: transform .28s ease;
  background: linear-gradient(135deg, #13090A 0%, #1A0D0E 52%, #221112 100%);
  border-right: 1px solid rgba(255,216,58,.18);
  box-shadow: 18px 0 38px rgba(0,0,0,.35);
}

.drawer-open .drawer-overlay {
  opacity: 1;
  visibility: visible;
}

.drawer-open .mobile-drawer {
  transform: translateX(0);
}

.drawer-open {
  overflow: hidden;
}

.drawer-top {
  display: grid;
  grid-template-columns: 1fr auto 40px;
  gap: 10px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid rgba(255,216,58,.12);
}

.drawer-login {
  min-height: 36px;
  padding: 8px 11px;
  font-size: 13px;
}

.drawer-close {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  font-size: 24px;
}

.drawer-nav {
  display: grid;
  padding: 12px 18px 24px;
}

.drawer-nav a {
  padding: 14px 8px;
  border-bottom: 1px solid rgba(255,216,58,.1);
  color: #FFD83A;
  font-weight: 700;
}

.drawer-nav a.active {
  box-shadow: inset 4px 0 0 #D60013;
  padding-left: 14px;
}

@media (max-width: 1060px) {
  .desktop-header {
    display: none;
  }
  .mobile-header {
    display: grid;
  }
  .site-main {
    padding-top: 0;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3,
  .zone-wall,
  .safety-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1200px);
  }
  .banner-slider {
    margin: 16px 12px 26px;
    border-radius: 16px;
  }
  .banner-arrow {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
  .banner-arrow.prev {
    left: 8px;
  }
  .banner-arrow.next {
    right: 8px;
  }
  .intro-strip,
  .page-hero,
  .app-section,
  .feature-row {
    grid-template-columns: 1fr;
  }
  .feature-row.reverse .feature-text,
  .feature-row.reverse .feature-media {
    order: initial;
  }
  .grid-4,
  .grid-3,
  .grid-2,
  .zone-wall,
  .safety-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 40px 0;
  }
  .card,
  .info-card,
  .faq-item,
  .content-block,
  .responsible-panel,
  .highlight-panel,
  .page-hero,
  .app-section {
    padding: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .mobile-header {
    padding: 0 12px;
    min-height: 68px;
  }
  .mobile-login {
    font-size: 12px;
    padding: 8px 9px;
  }
  .brand img,
  .mobile-logo img,
  .drawer-logo img,
  .footer-logo img {
    height: 42px;
  }
}

@media (max-width: 420px) {
  .mobile-header {
    grid-template-columns: 44px 1fr auto;
  }
  .menu-toggle {
    width: 40px;
  }
  .mobile-login {
    padding: 8px 8px;
    letter-spacing: -.02em;
  }
  .drawer-top {
    grid-template-columns: 1fr;
  }
  .drawer-close {
    position: absolute;
    right: 14px;
    top: 14px;
  }
}
