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

* {
    box-sizing: border-box;
}

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

img {
    display: block;
}

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

.inner-wrap {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.desktop-header {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand-logo img,
.mobile-logo img,
.drawer-logo img,
.footer-logo img {
    width: 128px;
    height: auto;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex: 1;
    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,
.primary-action,
.footer-login {
    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: 8px;
    box-shadow: 0 10px 22px rgba(255,122,0,0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    letter-spacing: .02em;
    transition: transform .2s ease, box-shadow .2s ease;
}

.login-btn:hover,
.primary-action:hover,
.footer-login: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: 42px;
    height: 42px;
    border-radius: 12px;
    background: #FFFFFF;
    color: #E86F00;
    box-shadow: 0 8px 20px rgba(150,78,0,0.12);
    font-size: 23px;
}

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

.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.42);
    z-index: 9998;
}

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

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

.drawer-open {
    overflow: hidden;
}

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

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

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

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

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

.drawer-nav a.active,
.drawer-nav a:hover {
    color: #E86F00;
    border-color: rgba(255,138,0,.40);
}

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

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

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

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

.section {
    padding: 46px 0;
}

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

.section-head p,
.page-intro,
.lead-text {
    color: #6E5A45;
    font-size: 18px;
}

.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 {
    display: flex;
    transition: transform .55s ease;
}

.banner-slide {
    flex: 0 0 100%;
    padding: 16px;
}

.banner-slide img {
    width: 100%;
    max-height: 470px;
    object-fit: contain;
    border-radius: 18px;
    background: #FFF8EF;
}

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

.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

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

.slider-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 0;
    background: rgba(232,111,0,.30);
    cursor: pointer;
}

.slider-dots button.active {
    background: #FF8A00;
    width: 28px;
    border-radius: 999px;
}

.card,
.zone-card,
.info-card,
.intro-strip,
.page-card,
.feature-box,
.notice-panel,
.content-panel,
.faq-item,
.promo-panel {
    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;
}

.intro-strip {
    padding: 24px 28px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8EF 55%, #FFEBD1 100%);
}

.intro-strip p {
    margin: 0;
    font-size: 18px;
    color: #3A1A00;
}

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

.quick-pills a {
    border: 1px solid rgba(255,138,0,.26);
    background: #FFF8EF;
    color: #E86F00;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 700;
}

.grid-4,
.grid-3,
.grid-2,
.zone-grid,
.help-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-grid { grid-template-columns: repeat(3, 1fr); }
.help-grid { grid-template-columns: repeat(3, 1fr); }
.faq-grid { grid-template-columns: repeat(2, 1fr); }

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

.card-tag,
.zone-tag,
.number-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #E86F00;
    background: #FFEBD1;
    border-radius: 999px;
    padding: 6px 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.number-badge {
    width: 44px;
    height: 44px;
    padding: 0;
    font-size: 18px;
}

.card h3,
.info-card h3,
.zone-card h3,
.feature-box h3,
.faq-item h3 {
    margin: 0 0 10px;
    color: #E86F00;
}

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

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

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

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

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

.alt-row .text-block {
    padding: 8px 4px;
}

.alt-row h2 {
    margin-top: 0;
    font-size: 34px;
}

.alt-row ul,
.page-card ul,
.feature-box ul {
    margin: 14px 0 0;
    padding-left: 20px;
    color: #3A1A00;
}

.visual-card {
    background: #FFF8EF;
    border: 1px solid rgba(255,138,0,.18);
    border-radius: 22px;
    padding: 16px;
    box-shadow: 0 16px 40px rgba(150,78,0,0.10);
}

.visual-card img {
    width: 100%;
    max-height: 360px;
    object-fit: contain;
    border-radius: 16px;
}

.zone-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.zone-card img {
    width: 100%;
    max-height: 190px;
    object-fit: contain;
    background: #FFF8EF;
    border-radius: 16px;
    padding: 8px;
}

.decor-card {
    min-height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: radial-gradient(circle at 30% 20%, #FFC04A, transparent 28%), linear-gradient(135deg, #FFF8EF 0%, #FFEBD1 100%);
    color: #E86F00;
    font-size: 46px;
    font-weight: 700;
}

.app-section {
    background: linear-gradient(135deg, #FFF8EF 0%, #FFEBD1 100%);
    border-radius: 26px;
    border: 1px solid rgba(255,138,0,.20);
    box-shadow: 0 18px 42px rgba(150,78,0,0.12);
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 28px;
    align-items: center;
    padding: 28px;
}

.app-section img {
    width: 100%;
    max-height: 390px;
    object-fit: contain;
}

.check-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 18px 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    background: #FFFFFF;
    border: 1px solid rgba(255,138,0,.18);
    border-radius: 14px;
    padding: 10px 12px;
    color: #3A1A00;
    font-weight: 700;
}

.page-hero {
    padding: 42px 0 24px;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 28px;
    align-items: center;
}

.page-title {
    font-size: clamp(38px, 6vw, 66px);
    margin: 0 0 18px;
}

.page-hero .lead-text {
    margin-bottom: 18px;
}

.page-visual {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8EF 58%, #FFEBD1 100%);
    border: 1px solid rgba(255,138,0,.20);
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 18px 42px rgba(150,78,0,0.12);
}

.page-visual img {
    width: 100%;
    max-height: 390px;
    border-radius: 18px;
}

.page-card {
    padding: 28px;
    margin-bottom: 22px;
}

.page-card h2 {
    margin-top: 0;
}

.notice-panel {
    padding: 26px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFEBD1 100%);
}

.notice-panel strong {
    color: #E86F00;
}

.promo-panel {
    padding: 26px;
    background: linear-gradient(135deg, #FFF8EF 0%, #FFFFFF 52%, #FFEBD1 100%);
}

.form-grid {
    display: grid;
    gap: 14px;
}

.form-grid label {
    display: grid;
    gap: 7px;
    color: #3A1A00;
    font-weight: 700;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
    width: 100%;
    border: 1px solid rgba(255,138,0,.24);
    background: #FFF8EF;
    border-radius: 12px;
    padding: 12px 14px;
    font-family: "Charis SIL", Georgia, serif;
    font-size: 16px;
    color: #2B2118;
}

.form-grid button {
    justify-self: start;
}

.site-footer {
    background: #3A1A00;
    color: #FFE7C2;
    margin-top: 48px;
    padding: 46px 0 22px;
}

.site-footer h2 {
    color: #FFC04A;
    font-size: 22px;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .8fr .8fr 1.05fr;
    gap: 28px;
}

.footer-brand p,
.site-footer p,
.footer-links a,
.footer-bottom {
    color: #FFE7C2;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.footer-links a:hover {
    color: #FFC04A;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,231,194,.20);
    margin-top: 30px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 14px;
}

@media (max-width: 1120px) {
    .desktop-header { gap: 10px; }
    .brand-logo img { width: 112px; }
    .nav a { font-size: 14px; padding: 8px 6px; }
    .header-login { padding: 0 12px; }
}

@media (max-width: 920px) {
    .desktop-header { display: none; }
    .mobile-header { display: flex; }
    .inner-wrap { width: min(100% - 24px, 1200px); }
    .grid-4,
    .grid-3,
    .zone-grid,
    .help-grid,
    .faq-grid,
    .grid-2,
    .alt-row,
    .app-section,
    .page-hero-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .alt-row.reverse-mobile .visual-card { order: 1; }
    .alt-row.reverse-mobile .text-block { order: 2; }
    .banner-slider { margin: 18px 12px 28px; border-radius: 18px; }
    .banner-slide { padding: 10px; }
    .banner-slide img { max-height: 310px; }
    .slider-arrow { width: 38px; height: 38px; font-size: 22px; }
    .slider-arrow.prev { left: 10px; }
    .slider-arrow.next { right: 10px; }
    .section { padding: 34px 0; }
    .page-hero { padding-top: 28px; }
    .app-section { padding: 20px; }
    .check-list { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .mobile-logo img { width: 104px; }
    .mobile-login { font-size: 12px; padding: 0 10px; }
    .page-title { font-size: 38px; }
    .alt-row h2 { font-size: 28px; }
    .card,
    .info-card,
    .zone-card,
    .feature-box,
    .faq-item,
    .page-card,
    .notice-panel,
    .promo-panel,
    .intro-strip { padding: 18px; }
    .slider-dots { bottom: 12px; }
    .footer-bottom { display: grid; }
}
