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: #FFF4E2;
    color: #2B2118;
    line-height: 1.65;
}

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

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

.shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 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 {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    min-height: 76px;
}

.brand-link,
.mobile-logo-link {
    display: inline-flex;
    align-items: center;
}

.site-logo {
    width: 128px;
    max-height: 52px;
    object-fit: contain;
}

.nav {
    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 9px;
    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,
.primary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    background: linear-gradient(180deg, #FFC04A 0%, #FF9A12 45%, #FF7A00 100%);
    color: #FFFFFF;
    border: 1px solid rgba(255,255,255,0.65);
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(255,122,0,0.22);
    padding: 11px 18px;
    letter-spacing: .02em;
    transition: transform .2s ease, box-shadow .2s ease;
}

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

.mobile-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    padding: 0 14px;
}

.menu-toggle,
.drawer-close,
.slider-arrow {
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    border: 0;
    cursor: pointer;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #FFFFFF;
    color: #E86F00;
    box-shadow: 0 8px 20px rgba(150,78,0,0.10);
    font-size: 24px;
}

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

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

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: min(84vw, 320px);
    height: 100vh;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF8EF 60%, #FFEBD1 100%);
    transform: translateX(-102%);
    transition: transform .28s ease;
    z-index: 10001;
    padding: 18px;
    box-shadow: 18px 0 34px rgba(58,26,0,0.18);
    overflow-y: auto;
}

.drawer-open {
    overflow: hidden;
}

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

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

.drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.drawer-logo {
    width: 126px;
    max-height: 52px;
    object-fit: contain;
}

.drawer-close {
    background: #FFF4E2;
    color: #E86F00;
    border-radius: 999px;
    padding: 8px 12px;
}

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

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

.drawer-nav a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 14px;
    color: #3A1A00;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(255,138,0,0.14);
    font-weight: 700;
}

.drawer-nav a.active,
.drawer-nav a:hover {
    color: #E86F00;
    background: #FFF4E2;
}

.site-main {
    min-height: 60vh;
}

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.25;
}

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

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(36px, 5vw, 64px);
    margin: 0 0 16px;
}

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

.section-desc,
.hero-lead,
.page-lead {
    color: #6E5A45;
    font-size: 18px;
    margin: 0;
}

.eyebrow,
.card-tag,
.zone-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    color: #E86F00;
    background: #FFEBD1;
    border: 1px solid rgba(255,138,0,0.20);
    border-radius: 999px;
    padding: 6px 12px;
    font-weight: 700;
    margin-bottom: 14px;
}

.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: 320px;
    display: grid;
}

.banner-slide {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity .45s ease, visibility .45s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFF8EF 0%, #FFFFFF 52%, #FFEBD1 100%);
}

.banner-slide.active {
    opacity: 1;
    visibility: visible;
}

.banner-slide img {
    width: 100%;
    max-height: 430px;
    height: auto;
    object-fit: contain;
    display: block;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.86);
    color: #E86F00;
    box-shadow: 0 10px 24px rgba(150,78,0,0.18);
    font-size: 28px;
    z-index: 2;
}

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

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

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

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background: rgba(232,111,0,0.28);
    cursor: pointer;
    padding: 0;
}

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

.intro-strip,
.responsible-strip,
.app-band,
.page-hero {
    border-radius: 26px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8EF 58%, #FFEBD1 100%);
    border: 1px solid rgba(255,138,0,0.18);
    box-shadow: 0 16px 40px rgba(150,78,0,0.10);
}

.intro-strip {
    padding: 26px;
    margin: 0 auto 34px;
}

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

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

.section-block {
    padding: 44px 0;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.section-head .section-desc {
    max-width: 680px;
}

.grid-8,
.service-grid,
.zone-grid,
.help-grid,
.faq-grid,
.inner-grid,
.detail-grid,
.contact-grid {
    display: grid;
    gap: 20px;
}

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

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

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

.inner-grid,
.detail-grid {
    grid-template-columns: 1fr 1fr;
}

.card,
.zone-card,
.info-card,
.faq-card,
.content-panel,
.contact-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: 22px;
}

.card,
.info-card,
.faq-card,
.content-panel,
.contact-card {
    padding: 24px;
}

.card-title {
    margin: 0 0 10px;
    color: #3A1A00;
    font-size: 22px;
}

.card p,
.info-card p,
.faq-card p,
.zone-card p,
.content-panel p,
.contact-card p {
    color: #6E5A45;
    margin-top: 0;
}

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

.card ul,
.content-panel ul,
.info-card ul {
    margin: 14px 0 0;
    padding-left: 20px;
    color: #2B2118;
}

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

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

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

.feature-media,
.hero-visual,
.promo-banner {
    background: #FFF8EF;
    border: 1px solid rgba(255,138,0,0.18);
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(150,78,0,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.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;
}

.feature-media img {
    width: 100%;
    max-height: 330px;
    object-fit: contain;
}

.feature-text {
    background: #FFFFFF;
    border: 1px solid rgba(255,138,0,0.18);
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(150,78,0,0.10);
    padding: 28px;
}

.feature-text h3 {
    color: #E86F00;
    font-size: 28px;
    margin: 0 0 12px;
}

.zone-card {
    overflow: hidden;
}

.zone-visual {
    min-height: 168px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFF8EF 0%, #FFEBD1 100%);
    padding: 18px;
}

.zone-visual img {
    max-height: 148px;
    object-fit: contain;
}

.zone-body {
    padding: 22px;
}

.zone-card h3 {
    margin: 6px 0 10px;
    color: #3A1A00;
}

.text-graphic {
    width: 88px;
    height: 88px;
    border-radius: 28px;
    background: linear-gradient(180deg, #FFC04A 0%, #FF9A12 45%, #FF7A00 100%);
    box-shadow: inset 0 0 0 8px rgba(255,255,255,0.28), 0 18px 28px rgba(255,122,0,0.18);
}

.app-band {
    padding: 30px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 28px;
}

.app-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-visual img {
    max-height: 380px;
    object-fit: contain;
}

.app-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.app-list li {
    background: #FFFFFF;
    border: 1px solid rgba(255,138,0,0.18);
    border-radius: 16px;
    padding: 12px 14px;
    font-weight: 700;
}

.responsible-strip {
    padding: 28px;
    margin: 34px auto 56px;
}

.page-hero {
    margin: 34px auto 28px;
    padding: 34px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
    align-items: center;
    gap: 28px;
}

.page-hero.no-image {
    display: block;
}

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

.content-wrap {
    margin: 0 auto 54px;
}

.content-panel h2,
.contact-card h2 {
    color: #E86F00;
    margin-top: 0;
}

.content-panel + .content-panel {
    margin-top: 20px;
}

.detail-grid {
    margin-top: 20px;
}

.contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 20px;
}

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

.notice-list li {
    background: #FFF8EF;
    border-left: 4px solid #FF8A00;
    border-radius: 14px;
    padding: 12px 14px;
}

.site-footer {
    background: #3A1A00;
    color: #FFE7C2;
    padding: 46px 0 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: 28px;
}

.footer-logo {
    width: 130px;
    max-height: 54px;
    object-fit: contain;
    background: rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 6px;
}

.footer-brand p,
.footer-note p {
    color: #FFE7C2;
}

.footer-grid h3 {
    margin: 0 0 12px;
    color: #FFC04A;
}

.footer-grid a:not(.login-btn) {
    display: block;
    color: #FFE7C2;
    margin: 7px 0;
}

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

.footer-note {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,231,194,0.18);
    font-size: 15px;
}

@media (max-width: 1080px) {
    .nav a {
        font-size: 14px;
        padding: 8px 6px;
    }
    .grid-8 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .desktop-header {
        display: none;
    }
    .mobile-header {
        display: flex;
    }
    .banner-track {
        min-height: 220px;
    }
    .grid-8,
    .service-grid,
    .zone-grid,
    .help-grid,
    .faq-grid,
    .inner-grid,
    .detail-grid,
    .contact-grid,
    .feature-row,
    .app-band,
    .page-hero {
        grid-template-columns: 1fr;
    }
    .feature-row.reverse .feature-media {
        order: -1;
    }
    .section-head {
        display: block;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .shell {
        width: min(100% - 24px, 1180px);
    }
    .site-logo {
        width: 112px;
    }
    .mobile-login {
        padding: 8px 10px;
        font-size: 12px;
    }
    .banner-slider {
        margin: 18px auto 26px;
        border-radius: 18px;
    }
    .banner-track {
        min-height: 160px;
    }
    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }
    .slider-arrow.prev {
        left: 8px;
    }
    .slider-arrow.next {
        right: 8px;
    }
    .grid-8,
    .app-list,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .section-block {
        padding: 34px 0;
    }
    .card,
    .info-card,
    .faq-card,
    .content-panel,
    .contact-card,
    .feature-text,
    .page-hero,
    .intro-strip,
    .responsible-strip,
    .app-band {
        padding: 20px;
        border-radius: 20px;
    }
}
