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;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { display: block; }
header {
  background: #13090A;
  color: #FFD83A;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #13090A 0%, #1A0D0E 55%, #221112 100%);
}
.header-inner,
.content-wrap {
  width: min(1200px, calc(100% - 36px));
  margin: 0 auto;
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand img,
.mobile-brand img,
.drawer-logo img,
.footer-brand img {
  width: 132px;
  height: auto;
  object-fit: contain;
}
.nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  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 10px;
  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 {
  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);
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  letter-spacing: .02em;
  transition: transform .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(241,10,23,0.36);
}
.mobile-header { display: none; }
.mobile-drawer,
.drawer-overlay { display: none; }
main { min-height: 60vh; }
h1,
.page-title,
.hero-title {
  font-family: "Charis SIL", Georgia, serif;
  font-weight: 700;
  color: #FFD83A;
  line-height: 1.16;
  margin: 0 0 18px;
}
h2,
.section-title {
  font-family: "Charis SIL", Georgia, serif;
  font-weight: 700;
  color: #FFD83A;
  line-height: 1.22;
  margin: 0 0 14px;
}
h3,
.card-title,
.zone-card h3,
.info-card h3 {
  font-family: "Charis SIL", Georgia, serif;
  font-weight: 700;
  color: #FFD83A;
  line-height: 1.28;
  margin: 0 0 10px;
}
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 { margin: 0 0 14px; }
ul { padding-left: 20px; margin: 12px 0 0; }
section { margin: 34px 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 { position: relative; min-height: 360px; display: flex; align-items: center; justify-content: center; }
.banner-slide { display: none; width: 100%; }
.banner-slide.active { display: block; }
.content-img,
.zone-card img,
.app-section img,
.banner-slider img,
.hero-visual img,
.promo-banner img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.banner-slider img { width: 100%; max-height: 470px; margin: 0 auto; background: #1A0D0E; }
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,216,58,0.32);
  background: rgba(19,9,10,0.78);
  color: #FFD83A;
  font-size: 28px;
  cursor: pointer;
}
.slider-btn.prev { left: 16px; }
.slider-btn.next { right: 16px; }
.slider-dots { position: absolute; left: 0; right: 0; bottom: 14px; display: flex; justify-content: center; gap: 8px; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; border: 0; background: rgba(255,216,58,0.36); cursor: pointer; }
.slider-dot.active { background: #FFD83A; box-shadow: 0 0 0 4px rgba(214,0,19,0.26); }
.intro-strip,
.panel,
.page-hero,
.responsible-panel,
.app-section,
.promo-banner {
  background: linear-gradient(135deg, #1A0D0E 0%, #221112 58%, #1B1112 100%);
  border: 1px solid rgba(255,216,58,0.14);
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.30);
  padding: 28px;
}
.intro-strip { display: grid; grid-template-columns: 1.35fr .85fr; gap: 28px; align-items: center; }
.eyebrow,
.label,
.number {
  color: #FFD83A;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 8px;
}
.intro-visual img,
.hero-visual img { width: 100%; max-height: 320px; margin: 0 auto; border-radius: 18px; background: #13090A; }
.quick-pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.quick-pills a {
  color: #FFD83A;
  border: 1px solid rgba(214,0,19,0.5);
  background: #1A0D0E;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
}
.section-head { text-align: center; margin: 0 auto 24px; max-width: 820px; }
.grid-4,
.grid-3,
.grid-2,
.zone-grid,
.help-grid,
.faq-grid,
.feature-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-grid { grid-template-columns: repeat(3, 1fr); }
.help-grid { grid-template-columns: repeat(3, 1fr); }
.faq-grid { grid-template-columns: repeat(2, 1fr); }
.feature-grid { grid-template-columns: repeat(2, 1fr); }
.card,
.zone-card,
.info-card,
.faq-item,
.feature-card,
.contact-card {
  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;
  padding: 20px;
}
.category-card img,
.zone-card img { width: 100%; max-height: 150px; margin: 0 auto 16px; border-radius: 14px; background: #241516; }
.category-card .text-link,
.zone-card .text-link,
.content-block .text-link,
.app-copy .text-link,
.page-copy .text-link { margin-top: 8px; display: inline-block; }
.text-link { color: #FFD83A; }
.text-link:hover { color: #FFC928; text-decoration: underline; }
.service-card .number,
.info-card .number { font-size: 28px; }
.alternating { display: grid; gap: 24px; }
.content-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; background: #1A0D0E; border: 1px solid rgba(255,216,58,0.14); border-radius: 22px; padding: 24px; box-shadow: 0 16px 40px rgba(0,0,0,0.30); }
.content-row.reverse .content-block { order: 1; }
.content-row.reverse .image-block { order: 2; }
.image-block img { width: 100%; max-height: 300px; border-radius: 18px; background: #241516; margin: 0 auto; }
.symbol-card { min-height: 150px; border-radius: 14px; background: radial-gradient(circle at top left, rgba(241,10,23,0.34), transparent 40%), #241516; display: flex; align-items: center; justify-content: center; color: #FFD83A; font-size: 34px; font-weight: 700; margin-bottom: 16px; }
.app-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; align-items: center; }
.app-section img { width: 100%; max-height: 360px; border-radius: 20px; background: #13090A; margin: 0 auto; }
.check-list { list-style: none; padding: 0; }
.check-list li { margin: 8px 0; padding-left: 24px; position: relative; }
.check-list li:before { content: "•"; color: #FFD83A; position: absolute; left: 0; font-weight: 700; }
.page-hero { display: grid; grid-template-columns: 1.2fr .8fr; gap: 30px; align-items: center; margin-top: 32px; }
.page-title { font-size: clamp(32px, 4vw, 54px); }
.hero-title { font-size: clamp(34px, 5vw, 60px); }
.page-copy { max-width: 960px; }
.page-copy h2 { margin-top: 30px; }
.notice-list { display: grid; gap: 14px; margin: 22px 0; }
.notice-item { padding: 16px 18px; background: #241516; border-left: 3px solid #D60013; border-radius: 12px; }
.cta-panel { background: linear-gradient(135deg, #221112 0%, #1A0D0E 100%); border: 1px solid rgba(255,216,58,0.18); border-radius: 18px; padding: 24px; margin: 24px 0; box-shadow: 0 16px 40px rgba(0,0,0,0.30); }
.cta-btn { margin-top: 10px; }
.faq-item h3 { color: #FFD83A; }
.contact-form { display: grid; gap: 14px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: #13090A;
  border: 1px solid rgba(255,216,58,0.22);
  border-radius: 10px;
  padding: 12px 14px;
  color: #F6E7BF;
  font-family: "Charis SIL", Georgia, serif;
}
.contact-form button { width: fit-content; cursor: pointer; }
.site-footer {
  background: #0E0607;
  color: #F7D976;
  margin-top: 48px;
  padding: 42px 0 22px;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 28px; }
.footer-grid h3 { color: #FFD83A; }
.footer-grid a { display: block; color: #F7D976; margin: 8px 0; }
.footer-brand a { display: inline-flex; }
.footer-brand p,
.footer-note p { color: #F7D976; }
.footer-login { margin-top: 10px; }
.footer-note { border-top: 1px solid rgba(255,216,58,0.14); margin-top: 28px; padding-top: 18px; font-size: 14px; }
@media (max-width: 1080px) {
  .nav a { font-size: 14px; padding: 8px 7px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .zone-grid,
  .help-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .desktop-header { display: none; }
  .mobile-header { min-height: 66px; display: grid; grid-template-columns: 70px 1fr auto; align-items: center; width: min(100%, calc(100% - 24px)); margin: 0 auto; gap: 8px; }
  .menu-toggle { width: 42px; height: 42px; border-radius: 10px; border: 1px solid rgba(255,216,58,0.24); background: #1A0D0E; color: #FFD83A; font-size: 24px; }
  .mobile-brand { justify-self: center; }
  .mobile-brand img { width: 112px; }
  .mobile-login { padding: 9px 12px; font-size: 13px; }
  .mobile-drawer { display: block; position: fixed; top: 0; left: 0; height: 100vh; width: 84vw; max-width: 320px; background: linear-gradient(160deg, #13090A 0%, #1A0D0E 64%, #221112 100%); transform: translateX(-105%); transition: transform .28s ease; z-index: 10001; padding: 18px; box-shadow: 18px 0 38px rgba(0,0,0,0.42); }
  .drawer-overlay { display: block; position: fixed; inset: 0; background: rgba(0,0,0,0.58); z-index: 10000; opacity: 0; pointer-events: none; transition: opacity .24s ease; }
  body.menu-open { overflow: hidden; }
  body.menu-open .mobile-drawer { transform: translateX(0); }
  body.menu-open .drawer-overlay { opacity: 1; pointer-events: auto; }
  .drawer-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
  .drawer-logo img { width: 118px; }
  .drawer-close { border: 1px solid rgba(255,216,58,0.24); background: #1B1112; color: #FFD83A; width: 38px; height: 38px; border-radius: 10px; font-size: 28px; line-height: 1; }
  .drawer-login { width: 100%; margin: 18px 0; }
  .drawer-nav { display: grid; gap: 8px; }
  .drawer-nav a { color: #FFD83A; padding: 11px 10px; border-bottom: 1px solid rgba(255,216,58,0.12); font-weight: 700; }
  .content-wrap { width: min(100% - 24px, 1200px); }
  .banner-slider { margin: 18px 12px 26px; border-radius: 18px; }
  .banner-track { min-height: 190px; }
  .slider-btn { width: 36px; height: 36px; font-size: 24px; }
  .intro-strip,
  .page-hero,
  .content-row,
  .app-section { grid-template-columns: 1fr; padding: 20px; }
  .content-row.reverse .content-block,
  .content-row.reverse .image-block { order: initial; }
  .grid-3,
  .grid-2,
  .zone-grid,
  .help-grid,
  .faq-grid,
  .feature-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  section { margin: 26px auto; }
  .category-card img,
  .zone-card img { max-height: 135px; }
  .image-block img,
  .hero-visual img { max-height: 250px; }
}
@media (max-width: 520px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero-title { font-size: 34px; }
  .page-title { font-size: 30px; }
  .quick-pills { justify-content: flex-start; }
  .mobile-login { font-size: 12px; padding: 8px 9px; }
}
