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 {
    display: block;
    max-width: 100%;
    height: auto;
}

.wrap {
    width: min(1200px, 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 {
    min-height: 78px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
}

.brand img,
.mobile-brand img,
.drawer-logo img,
.footer-logo img {
    width: 126px;
    height: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    overflow: hidden;
}

.nav a,
.text-link,
.meta-text,
.small-note {
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
}

.nav a {
    color: #3A1A00;
    padding: 8px 10px;
    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-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    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);
    letter-spacing: .02em;
    transition: transform .2s ease, box-shadow .2s ease;
}

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

.mobile-header {
    display: none;
}

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

.menu-toggle {
    width: 42px;
    height: 42px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: #FFFFFF;
    border: 1px solid rgba(255,138,0,0.18);
    border-radius: 10px;
    padding: 0 10px;
}

.menu-toggle span {
    height: 2px;
    width: 100%;
    background: #3A1A00;
    border-radius: 10px;
}

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

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

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

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

body.drawer-open {
    overflow: hidden;
}

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

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

.drawer-login {
    width: 100%;
    margin: 8px 0 16px;
}

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

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

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

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

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

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

.page-hero {
    padding: 54px 0 26px;
}

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

.hero-kicker,
.card-tag,
.zone-label,
.num {
    display: inline-flex;
    align-items: center;
    width: max-content;
    color: #E86F00;
    background: #FFEBD1;
    border: 1px solid rgba(255,138,0,.22);
    border-radius: 999px;
    padding: 4px 12px;
    font-weight: 700;
}

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

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

.section-desc,
.lead,
.hero-text p {
    color: #6E5A45;
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

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

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

.hero-visual img {
    max-height: 360px;
    margin: 0 auto;
}

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

.slider-track {
    display: flex;
    transition: transform .55s ease;
}

.slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF8EF;
}

.slide img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    background: #FFF8EF;
}

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

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

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

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

.slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background: rgba(58,26,0,.28);
    cursor: pointer;
}

.slider-dots button.active {
    width: 24px;
    background: #FF8A00;
}

.brand-strip {
    margin: 0 auto 34px;
    padding: 26px 30px;
    border-radius: 22px;
    background: #FFFFFF;
    border: 1px solid rgba(255,138,0,.18);
    box-shadow: 0 16px 40px rgba(150,78,0,0.10);
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 16px auto 38px;
}

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

.section {
    padding: 38px 0;
}

.section-head {
    max-width: 820px;
    margin-bottom: 24px;
}

.center-head {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.grid {
    display: grid;
    gap: 22px;
}

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

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

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

.card,
.zone-card,
.info-card,
.faq-item,
.article-block {
    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-item,
.article-block {
    padding: 24px;
}

.category-card {
    overflow: hidden;
}

.category-card .image-box,
.zone-card .image-box {
    padding: 14px;
    min-height: 178px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFF8EF 0%, #FFEBD1 100%);
    border-radius: 18px;
    margin-bottom: 16px;
}

.category-card img,
.zone-card img {
    max-height: 160px;
    margin: 0 auto;
}

.card h3,
.zone-card h3,
.info-card h3,
.faq-item h3,
.article-block h2,
.article-block h3 {
    color: #3A1A00;
    margin: 10px 0;
}

.card p,
.zone-card p,
.info-card p,
.faq-item p,
.article-block p,
.article-block li {
    color: #6E5A45;
}

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

.text-link::after {
    content: "›";
    font-size: 20px;
    line-height: 1;
}

.service-card .num {
    font-size: 18px;
    margin-bottom: 12px;
}

.check-list,
.article-block ul {
    padding-left: 20px;
    margin: 14px 0 0;
}

.check-list li,
.article-block li {
    margin: 8px 0;
}

.feature-row {
    display: grid;
    grid-template-columns: minmax(280px, .95fr) minmax(0, 1.05fr);
    gap: 28px;
    align-items: center;
    margin: 24px 0;
    padding: 24px;
    background: #FFFFFF;
    border: 1px solid rgba(255,138,0,.18);
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(150,78,0,0.10);
}

.feature-row.reverse {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
}

.feature-media {
    border-radius: 20px;
    background: linear-gradient(135deg, #FFF8EF 0%, #FFEBD1 100%);
    padding: 16px;
}

.feature-media img {
    max-height: 320px;
    object-fit: contain;
    margin: 0 auto;
}

.feature-copy h3 {
    font-size: clamp(24px, 3vw, 34px);
    margin: 0 0 12px;
    color: #E86F00;
}

.zone-card {
    overflow: hidden;
    padding: 18px;
}

.zone-card.no-image {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8EF 58%, #FFEBD1 100%);
}

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

.app-section img {
    max-height: 360px;
    margin: 0 auto;
}

.help-grid .info-card {
    position: relative;
    overflow: hidden;
}

.help-grid .info-card::after {
    content: "";
    position: absolute;
    right: -26px;
    bottom: -26px;
    width: 90px;
    height: 90px;
    border-radius: 999px;
    background: rgba(255,138,0,.10);
}

.notice-box {
    padding: 28px;
    border-radius: 24px;
    background: #3A1A00;
    color: #FFE7C2;
    box-shadow: 0 18px 42px rgba(58,26,0,.18);
}

.notice-box h2,
.notice-box h3 {
    color: #FFC04A;
}

.notice-box p,
.notice-box li {
    color: #FFE7C2;
}

.page-content {
    padding: 22px 0 58px;
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    align-items: start;
}

.article-block {
    margin-bottom: 22px;
}

.article-block h2 {
    color: #E86F00;
    font-size: 30px;
}

.side-card {
    position: sticky;
    top: 100px;
}

.side-card .image-box {
    padding: 14px;
    border-radius: 18px;
    background: linear-gradient(135deg, #FFF8EF 0%, #FFEBD1 100%);
    margin-bottom: 14px;
}

.side-card img {
    max-height: 260px;
    margin: 0 auto;
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-answer {
    color: #6E5A45;
}

.contact-list {
    display: grid;
    gap: 12px;
}

.contact-list a,
.contact-list span {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    background: #FFF8EF;
    border: 1px solid rgba(255,138,0,.14);
    color: #3A1A00;
    font-weight: 700;
}

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

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

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

.footer-logo img {
    width: 132px;
    margin-bottom: 14px;
}

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

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

.footer-col a {
    display: block;
    margin: 8px 0;
}

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

@media (max-width: 1100px) {
    .desktop-header {
        display: none;
    }
    .mobile-header {
        min-height: 72px;
        display: grid;
        grid-template-columns: 56px 1fr auto;
        align-items: center;
        gap: 10px;
        padding: 0 14px;
    }
    .mobile-brand {
        justify-self: center;
    }
    .mobile-brand img {
        width: 118px;
    }
    .mobile-login {
        min-height: 38px;
        padding: 8px 12px;
        font-size: 13px;
    }
    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .content-layout {
        grid-template-columns: 1fr;
    }
    .side-card {
        position: static;
    }
}

@media (max-width: 760px) {
    .wrap {
        width: min(100% - 24px, 1200px);
    }
    .page-hero {
        padding-top: 30px;
    }
    .page-hero .hero-box,
    .app-section,
    .feature-row,
    .feature-row.reverse {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    .feature-row.reverse .feature-copy {
        order: 2;
    }
    .feature-row.reverse .feature-media {
        order: 1;
    }
    .grid-2,
    .grid-3,
    .grid-4,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 23px;
    }
    .slide img {
        max-height: 360px;
    }
    .brand-strip,
    .card,
    .info-card,
    .faq-item,
    .article-block {
        padding: 20px;
    }
    .category-card .image-box,
    .zone-card .image-box {
        min-height: 148px;
    }
    .category-card img,
    .zone-card img,
    .feature-media img,
    .side-card img {
        max-height: 220px;
    }
}

@media (max-width: 420px) {
    .mobile-header {
        grid-template-columns: 48px 1fr auto;
        padding: 0 10px;
    }
    .mobile-brand img {
        width: 106px;
    }
    .mobile-login {
        padding: 7px 9px;
        font-size: 12px;
    }
    .pill-row a {
        width: calc(50% - 5px);
        text-align: center;
        justify-content: center;
    }
}
