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

body {
    background: #FFF4E2;
    color: #2B2118;
    line-height: 1.65;
}

* {
    box-sizing: border-box;
}

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

img {
    max-width: 100%;
    height: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #FFF8EF 0%, #FFF4E2 55%, #FFEBD1 100%);
    color: #3A1A00;
    box-shadow: 0 8px 24px rgba(150,78,0,0.08);
}

.desktop-header {
    max-width: 1280px;
    margin: 0 auto;
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 28px;
}

.brand img,
.mobile-brand img {
    display: block;
    width: 142px;
    height: auto;
}

.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: #3A1A00;
    padding: 8px 8px;
    border-radius: 0;
    white-space: nowrap;
    line-height: 1;
    font-size: 15px;
}

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

.login-btn {
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(180deg, #FFC04A 0%, #FF9A12 45%, #FF7A00 100%);
    color: #FFFFFF;
    border: 1px solid rgba(255,255,255,0.65);
    border-radius: 8px;
    box-shadow: 0 10px 22px rgba(255,122,0,0.22);
    min-height: 40px;
    padding: 9px 16px;
    letter-spacing: .02em;
    transition: transform .2s ease, box-shadow .2s ease;
    white-space: nowrap;
}

.login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(255,122,0,0.30);
}

.mobile-header {
    min-height: 68px;
    display: none;
    grid-template-columns: 52px 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    border: 0;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(150,78,0,0.10);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 21px;
    height: 2px;
    background: #3A1A00;
    border-radius: 20px;
}

.mobile-brand {
    justify-self: center;
}

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

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 12, 4, .46);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.mobile-drawer {
    position: fixed;
    inset: 0 auto 0 0;
    width: 84vw;
    max-width: 320px;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF8EF 65%, #FFEBD1 100%);
    z-index: 10000;
    transform: translateX(-105%);
    transition: transform .28s ease;
    box-shadow: 20px 0 40px rgba(58,26,0,.20);
    padding: 18px;
    overflow-y: auto;
}

.drawer-open {
    overflow: hidden;
}

.drawer-open .drawer-overlay {
    opacity: 1;
    pointer-events: auto;
}

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

.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.drawer-head img {
    width: 132px;
}

.drawer-close {
    border: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #FFF4E2;
    color: #3A1A00;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.drawer-login {
    width: 100%;
    margin: 18px 0 14px;
}

.drawer-nav {
    display: grid;
    gap: 8px;
}

.drawer-nav a {
    padding: 11px 12px;
    border-radius: 12px;
    background: #FFFFFF;
    border: 1px solid rgba(255,138,0,0.16);
    color: #3A1A00;
    font-weight: 700;
}

.drawer-nav a.active {
    color: #E86F00;
    border-color: rgba(255,138,0,0.42);
    box-shadow: inset 4px 0 0 #FF8A00;
}

main {
    display: block;
}

.page-wrap,
.home-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 34px 20px 64px;
}

.hero,
.page-hero {
    background: linear-gradient(135deg, #FFF8EF 0%, #FFFFFF 48%, #FFEBD1 100%);
    border: 1px solid rgba(255,138,0,0.18);
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(150,78,0,0.10);
    padding: 34px;
    display: grid;
    grid-template-columns: 1.06fr .94fr;
    gap: 28px;
    align-items: center;
}

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

.eyebrow,
.badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 6px;
    color: #E86F00;
    background: #FFF4E2;
    border: 1px solid rgba(255,138,0,0.18);
    border-radius: 999px;
    padding: 6px 12px;
    font-weight: 700;
    font-size: 14px;
}

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

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

h3,
.card-title,
.zone-card h3,
.info-card h3 {
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    line-height: 1.28;
}

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

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

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

.section-desc {
    color: #6E5A45;
    max-width: 780px;
    margin: 0 auto;
}

.hero p,
.page-hero p {
    color: #6E5A45;
    font-size: 18px;
}

.hero-visual,
.image-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 22px;
    border: 1px solid rgba(255,138,0,0.16);
    min-height: 250px;
    padding: 16px;
    overflow: hidden;
}

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

.hero-visual img,
.image-panel img {
    max-height: 360px;
}

.banner-slider {
    max-width: 1200px;
    margin: 28px auto 36px;
    border-radius: 22px;
    background: linear-gradient(135deg, #FFF8EF 0%, #FFFFFF 48%, #FFEBD1 100%);
    border: 1px solid rgba(255,138,0,0.22);
    box-shadow: 0 18px 42px rgba(150,78,0,0.14);
    overflow: hidden;
    position: relative;
}

.banner-track {
    position: relative;
    min-height: 260px;
}

.banner-slide {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.banner-slide.active {
    display: flex;
}

.banner-slide img {
    width: 100%;
    max-height: 500px;
    border-radius: 18px;
}

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,248,239,.92);
    color: #E86F00;
    font-size: 34px;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(150,78,0,.16);
    cursor: pointer;
}

.banner-prev {
    left: 18px;
}

.banner-next {
    right: 18px;
}

.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: 0;
    background: rgba(232,111,0,.32);
    cursor: pointer;
}

.banner-dot.active {
    width: 28px;
    background: #FF8A00;
}

.intro-strip,
.notice-box,
.responsible-box {
    margin: 28px 0;
    padding: 24px;
    border-radius: 22px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8EF 60%, #FFEBD1 100%);
    border: 1px solid rgba(255,138,0,0.18);
    box-shadow: 0 16px 40px rgba(150,78,0,0.10);
}

.intro-strip p,
.notice-box p,
.responsible-box p {
    margin: 0;
    color: #2B2118;
}

.quick-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0 34px;
}

.quick-pills a {
    background: #FFFFFF;
    color: #E86F00;
    border: 1px solid rgba(255,138,0,0.22);
    box-shadow: 0 10px 24px rgba(150,78,0,0.08);
    border-radius: 999px;
    padding: 9px 15px;
    font-weight: 700;
}

.section-head {
    text-align: center;
    margin: 54px 0 26px;
}

.grid-8,
.grid-3,
.grid-4,
.zone-grid,
.help-grid,
.faq-grid {
    display: grid;
    gap: 18px;
}

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

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

.grid-4,
.zone-grid,
.help-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.zone-card,
.info-card,
.faq-card,
.feature-card {
    background: #FFFFFF;
    border: 1px solid rgba(255,138,0,0.18);
    box-shadow: 0 16px 40px rgba(150,78,0,0.10);
    color: #2B2118;
    border-radius: 20px;
}

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

.category-card {
    overflow: hidden;
}

.category-card .thumb {
    height: 155px;
    background: #FFF8EF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.category-card .thumb img {
    max-height: 132px;
    object-fit: contain;
}

.category-card .body {
    padding: 18px;
}

.category-card h3,
.zone-card h3,
.info-card h3,
.feature-card h3 {
    margin: 0 0 10px;
    color: #3A1A00;
}

.card p,
.zone-card p,
.info-card p,
.feature-card p,
.faq-card p {
    color: #6E5A45;
    margin: 0 0 14px;
}

.text-link {
    color: #E86F00;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.text-link:hover {
    color: #FF8A00;
}

.service-number,
.help-number {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #FFEBD1;
    color: #E86F00;
    font-weight: 700;
    margin-bottom: 16px;
}

.check-list,
.soft-list,
.article-list {
    margin: 14px 0 0;
    padding-left: 20px;
    color: #2B2118;
}

.check-list li,
.soft-list li,
.article-list li {
    margin: 7px 0;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
    margin: 28px 0;
    padding: 26px;
    background: #FFFFFF;
    border: 1px solid rgba(255,138,0,0.18);
    box-shadow: 0 16px 40px rgba(150,78,0,0.10);
    border-radius: 24px;
}

.split-section.alt .image-panel {
    order: 2;
}

.split-section h3 {
    font-size: 29px;
    color: #E86F00;
    margin: 0 0 12px;
}

.zone-card {
    overflow: hidden;
}

.zone-media {
    height: 168px;
    background: #FFF8EF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.zone-media img {
    max-height: 142px;
}

.zone-body {
    padding: 20px;
}

.graphic-mark {
    width: 92px;
    height: 92px;
    border-radius: 28px;
    background: radial-gradient(circle at 35% 30%, #FFC04A 0%, #FF9A12 48%, #FF7A00 100%);
    box-shadow: inset 0 0 0 10px rgba(255,255,255,.32);
}

.app-section {
    margin: 56px 0;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 28px;
    align-items: center;
    padding: 30px;
    border-radius: 26px;
    background: linear-gradient(135deg, #FFEBD1 0%, #FFF8EF 54%, #FFFFFF 100%);
    border: 1px solid rgba(255,138,0,0.20);
    box-shadow: 0 16px 40px rgba(150,78,0,0.10);
}

.app-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFFFFF;
    border-radius: 22px;
    min-height: 250px;
    padding: 18px;
}

.app-visual img {
    max-height: 330px;
}

.help-grid .info-card {
    min-height: 100%;
}

.faq-card h3 {
    color: #3A1A00;
    margin-top: 0;
}

.page-content {
    margin-top: 28px;
    display: grid;
    gap: 22px;
}

.content-block {
    background: #FFFFFF;
    border: 1px solid rgba(255,138,0,0.18);
    box-shadow: 0 16px 40px rgba(150,78,0,0.10);
    border-radius: 22px;
    padding: 26px;
}

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

.content-block p {
    color: #6E5A45;
}

.content-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.primary-entry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 20px;
    border-radius: 10px;
    font-weight: 700;
    color: #FFFFFF;
    background: linear-gradient(180deg, #FFC04A 0%, #FF9A12 45%, #FF7A00 100%);
    box-shadow: 0 10px 22px rgba(255,122,0,0.22);
}

.table-card {
    overflow-x: auto;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 620px;
}

.info-table th,
.info-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,138,0,0.16);
    text-align: left;
}

.info-table th {
    color: #E86F00;
    background: #FFF8EF;
    font-weight: 700;
}

.site-footer {
    background: #3A1A00;
    color: #FFE7C2;
    padding: 48px 20px 24px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: 28px;
}

.footer-brand img {
    width: 148px;
    display: block;
    margin-bottom: 16px;
}

.footer-brand p,
.footer-bottom p {
    color: #FFE7C2;
    opacity: .92;
}

.footer-login {
    margin-top: 8px;
}

.footer-col {
    display: grid;
    align-content: start;
    gap: 8px;
}

.footer-col h3 {
    color: #FFC04A;
    margin: 0 0 8px;
}

.footer-col a {
    color: #FFE7C2;
    opacity: .92;
}

.footer-col a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    max-width: 1200px;
    margin: 28px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,231,194,.18);
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

@media (max-width: 1100px) {
    .desktop-header {
        gap: 12px;
        padding: 0 18px;
    }
    .nav a {
        font-size: 14px;
        padding: 8px 6px;
    }
    .brand img {
        width: 126px;
    }
    .grid-8 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .desktop-header {
        display: none;
    }
    .mobile-header {
        display: grid;
    }
    .page-wrap,
    .home-wrap {
        padding: 24px 14px 48px;
    }
    .hero,
    .page-hero,
    .split-section,
    .app-section {
        grid-template-columns: 1fr;
        padding: 22px;
    }
    .split-section.alt .image-panel {
        order: 0;
    }
    .grid-8,
    .grid-3,
    .grid-4,
    .zone-grid,
    .help-grid,
    .faq-grid,
    .content-columns,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .banner-track {
        min-height: 180px;
    }
    .banner-arrow {
        width: 38px;
        height: 38px;
        font-size: 28px;
    }
    .category-card .thumb,
    .zone-media {
        height: 138px;
    }
}

@media (max-width: 600px) {
    .mobile-brand img {
        width: 118px;
    }
    .mobile-login {
        padding: 7px 9px;
        font-size: 12px;
        border-radius: 7px;
    }
    .hero-title,
    .page-title {
        font-size: 32px;
    }
    .grid-8,
    .grid-3,
    .grid-4,
    .zone-grid,
    .help-grid,
    .faq-grid,
    .content-columns,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .quick-pills {
        gap: 8px;
    }
    .quick-pills a {
        padding: 8px 12px;
        font-size: 14px;
    }
    .banner-slide {
        padding: 8px;
    }
    .banner-slide img {
        border-radius: 14px;
    }
    .banner-prev {
        left: 8px;
    }
    .banner-next {
        right: 8px;
    }
    .banner-dots {
        bottom: 9px;
    }
    .intro-strip,
    .notice-box,
    .responsible-box,
    .content-block,
    .card,
    .info-card,
    .faq-card,
    .feature-card {
        padding: 18px;
    }
}
