html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "Be Vietnam Pro", Arial, sans-serif;
  font-weight: 400;
}

* { box-sizing: border-box; }

body {
  background: #FFF6EA;
  color: #222222;
  line-height: 1.7;
}

a { text-decoration: none; }
img { display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.site-main { padding-top: 24px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF3E2 55%, #FFF8EF 100%);
  color: #3A1A00;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(145,73,0,0.08);
}
.topbar { height: 82px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; }
.brand img, .drawer-logo img { width: 136px; height: auto; }
.desktop-nav { display: flex; justify-content: center; align-items: center; gap: 6px; flex-wrap: wrap; }
.nav a,
.text-link,
.meta-text,
.small-note { font-family: "Be Vietnam Pro", Arial, sans-serif; font-weight: 500; }
.nav a { color: #3A1A00; padding: 10px 12px; border-radius: 999px; font-size: 14px; transition: .25s ease; }
.nav a:hover, .nav a.active { background: rgba(255,138,0,0.10); color: #D96000; box-shadow: inset 0 -2px 0 #FF8A00; }
.main-btn {
  font-family: "Be Vietnam Pro", Arial, sans-serif;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  background: linear-gradient(135deg, #FFC247 0%, #FF9A12 45%, #FF7A00 100%);
  color: #3A1A00;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(255,122,0,0.24);
  border: 0;
  letter-spacing: .02em;
  transition: transform .25s ease, box-shadow .25s ease;
}
.main-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(255,122,0,0.32); }
.menu-toggle { display: none; background: #FFFFFF; color: #3A1A00; border: 1px solid rgba(255,138,0,0.20); width: 42px; height: 42px; border-radius: 14px; font-size: 22px; }
.drawer-backdrop { position: fixed; inset: 0; background: rgba(58,26,0,.35); opacity: 0; pointer-events: none; transition: .25s ease; }
.mobile-drawer { position: fixed; top: 0; left: 0; width: min(320px, 86vw); min-height: 100vh; background: #FFF8EF; transform: translateX(-105%); transition: .28s ease; box-shadow: 20px 0 40px rgba(58,26,0,.18); padding: 22px; }
.drawer-active .drawer-backdrop { opacity: 1; pointer-events: auto; }
.drawer-active .mobile-drawer { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.drawer-close { width: 40px; height: 40px; border: 0; border-radius: 12px; background: #FFF1C8; color: #3A1A00; font-size: 28px; }
.drawer-nav { display: grid; gap: 8px; }

h1,
.page-title,
.hero-title { font-family: "Be Vietnam Pro", Arial, sans-serif; font-weight: 700; color: #D96000; line-height: 1.16; }
h2,
.section-title { font-family: "Be Vietnam Pro", Arial, sans-serif; font-weight: 700; color: #D96000; line-height: 1.25; }
h3,
.card-title,
.zone-card h3,
.info-card h3 { font-family: "Be Vietnam Pro", Arial, sans-serif; font-weight: 600; color: #7A3200; }
p,
li,
.faq-answer,
.section-desc,
.card p,
.zone-card p,
.info-card p { font-family: "Be Vietnam Pro", Arial, sans-serif; font-weight: 400; }
.section { padding: 48px 0; }
.section-head { max-width: 760px; margin-bottom: 24px; }
.section-title { font-size: clamp(28px, 4vw, 42px); margin: 0 0 12px; }
.section-desc { color: #6C5A4A; margin: 0; }
.hero { padding: 54px 0 34px; }
.hero-wrap { display: grid; grid-template-columns: 1.08fr .92fr; gap: 36px; align-items: center; padding: 36px; border-radius: 32px; background: linear-gradient(135deg, #FFF3E2 0%, #FFF8EF 45%, #FFF1C8 100%); border: 1px solid rgba(255,138,0,0.16); box-shadow: 0 16px 40px rgba(145,73,0,0.10); }
.hero-label, .pill { display: inline-flex; align-items: center; border-radius: 999px; background: rgba(255,138,0,0.12); color: #D96000; padding: 8px 14px; font-weight: 700; }
.hero-title { font-size: clamp(36px, 6vw, 64px); margin: 16px 0; }
.hero-text { color: #222222; font-size: 17px; }
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-top: 22px; }
.hero-tags { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.hero-tags span { background: #FFFFFF; border: 1px solid rgba(255,138,0,0.16); border-radius: 18px; padding: 14px; font-weight: 600; color: #7A3200; }
.hero-visual { background: #FFFFFF; border-radius: 28px; padding: 20px; border: 1px solid rgba(255,138,0,0.16); box-shadow: 0 16px 40px rgba(145,73,0,0.10); }
.content-img,
.zone-card img,
.app-section img,
.hero-visual img,
.promo-banner img { max-width: 100%; height: auto; object-fit: contain; }
.hero-visual img { width: 100%; max-height: 440px; margin: auto; }
.card,
.zone-card,
.info-card,
.promo-banner,
.feature-card,
.faq-item,
.content-band,
.page-card {
  background: #FFFFFF;
  border: 1px solid rgba(255,138,0,0.16);
  box-shadow: 0 16px 40px rgba(145,73,0,0.10);
  color: #222222;
  border-radius: 24px;
}
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.promo-banner { overflow: hidden; padding: 12px; }
.promo-banner img { width: 100%; border-radius: 18px; }
.promo-banner p { margin: 12px 6px 4px; color: #6C5A4A; }
.quick-pills { display: flex; flex-wrap: wrap; gap: 12px; }
.quick-pills a { padding: 11px 16px; border-radius: 999px; background: #FFFFFF; border: 1px solid rgba(255,138,0,0.18); color: #D96000; font-weight: 600; }
.category-grid, .service-grid, .safe-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.category-grid { grid-template-columns: repeat(4, 1fr); }
.card, .info-card { padding: 24px; }
.card h3, .info-card h3 { margin-top: 0; }
.card p, .info-card p { color: #6C5A4A; }
.card a, .text-link { color: #D96000; font-weight: 700; }
.content-band { padding: 28px; background: linear-gradient(135deg, #FFFFFF 0%, #FFF3E2 100%); }
.number { width: 44px; height: 44px; border-radius: 15px; background: #FFF1C8; color: #D96000; display: inline-flex; justify-content: center; align-items: center; font-weight: 800; margin-bottom: 14px; }
.split-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; margin: 28px 0; }
.split-row.reverse .split-text { order: 1; }
.split-row.reverse .split-media { order: 2; }
.split-media { background: #FFFFFF; border: 1px solid rgba(255,138,0,0.16); border-radius: 26px; padding: 18px; box-shadow: 0 16px 40px rgba(145,73,0,0.10); }
.split-media img { width: 100%; max-height: 360px; margin: auto; }
.split-text { padding: 10px; }
.split-text ul, .feature-card ul { padding-left: 20px; color: #6C5A4A; }
.zone-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.zone-card { overflow: hidden; }
.zone-card img { width: 100%; max-height: 190px; padding: 12px; }
.zone-body { padding: 20px; }
.zone-tag { color: #D96000; font-weight: 800; font-size: 13px; text-transform: uppercase; }
.app-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; align-items: center; padding: 34px; border-radius: 30px; background: linear-gradient(135deg, #FFF3E2 0%, #FFFFFF 56%, #FFF1C8 100%); border: 1px solid rgba(255,138,0,0.16); }
.app-section img { max-height: 420px; margin: auto; }
.faq-list { display: grid; gap: 14px; }
.faq-item { padding: 22px; }
.faq-item h3 { margin: 0 0 8px; }
.notice { border-radius: 26px; padding: 26px; background: #3A1A00; color: #FFE7C2; }
.notice h2 { color: #FFC247; margin-top: 0; }
.page-hero { padding: 42px 0 22px; }
.page-hero-inner { padding: 34px; border-radius: 30px; background: linear-gradient(135deg, #FFF3E2 0%, #FFFFFF 75%); border: 1px solid rgba(255,138,0,0.16); box-shadow: 0 16px 40px rgba(145,73,0,0.10); }
.page-title { font-size: clamp(34px, 5vw, 56px); margin: 10px 0; }
.page-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items: start; }
.page-card { padding: 26px; margin-bottom: 20px; }
.page-card img { width: 100%; max-height: 380px; margin: 0 auto 18px; }
.check-list { display: grid; gap: 10px; padding-left: 20px; }
.two-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.site-footer { background: #3A1A00; color: #FFE7C2; margin-top: 48px; padding: 44px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 28px; }
.footer-brand img { width: 130px; margin-bottom: 14px; }
.site-footer h3 { color: #FFC247; margin-top: 0; }
.site-footer a { display: block; color: #FFE7C2; margin: 8px 0; }
.footer-bottom { border-top: 1px solid rgba(255,231,194,.18); margin-top: 28px; padding-top: 18px; color: #FFE7C2; }
@media (max-width: 980px) {
  .topbar { grid-template-columns: 48px 1fr auto; height: 74px; gap: 10px; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .desktop-nav { display: none; }
  .brand { justify-self: center; }
  .brand img { width: 118px; }
  .header-btn { padding: 10px 14px; min-height: 40px; font-size: 13px; }
  .hero-wrap, .page-grid, .app-section { grid-template-columns: 1fr; }
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid, .safe-grid, .zone-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .split-row, .split-row.reverse { grid-template-columns: 1fr; }
  .split-row.reverse .split-text, .split-row.reverse .split-media { order: initial; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 22px, 1180px); }
  .hero { padding-top: 26px; }
  .hero-wrap, .page-hero-inner, .app-section { padding: 22px; border-radius: 24px; }
  .hero-tags, .promo-grid, .category-grid, .service-grid, .safe-grid, .zone-grid, .two-col, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 34px 0; }
  .card, .info-card, .page-card { padding: 20px; }
}
