:root {
    --bg: #FFF5F7;
    --soft: #FFE8EE;
    --pale: #FFF9FA;
    --white: #FFFFFF;
    --red: #E94255;
    --pink: #FF7A95;
    --deep: #B81F35;
    --wine: #7A1022;
    --title: #9A1730;
    --text: #2A1E23;
    --muted: #7A5D65;
    --border: rgba(233,66,85,0.18);
    --shadow: 0 16px 40px rgba(184,31,53,0.12);
}
* { box-sizing: border-box; }
html,
body {
    margin: 0;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 400;
}
body {
    background: var(--bg);
    color: var(--text);
    line-height: 1.72;
}
a { text-decoration: none; }
img { display: block; }
.site-header {
    background: #F06F86;
    color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(184,31,53,0.18);
    position: sticky;
    top: 0;
    z-index: 9999;
}
.topbar {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 74px;
    padding: 0 22px;
}
.brand img { width: 132px; height: auto; max-height: 52px; object-fit: contain; }
.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}
.nav a {
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    color: #FFFFFF;
    font-size: 15px;
    white-space: nowrap;
    padding: 24px 0 19px;
    border-bottom: 2px solid transparent;
    transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.nav a:hover,
.nav a.active {
    color: #7A1022;
    border-bottom-color: #7A1022;
    transform: translateY(-1px);
}
.login-btn {
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    color: #B81F35;
    border: 1px solid rgba(233,66,85,0.35);
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(184,31,53,0.10);
    padding: 10px 18px;
    min-height: 42px;
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease;
}
.login-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(122,16,34,0.18); }
.mobile-topbar { display: none; }
.site-main { padding-bottom: 0; }
h1,
.page-title,
.hero-title {
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    color: #9A1730;
    line-height: 1.18;
}
h2,
.section-title {
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    color: #9A1730;
    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;
}
.nav a,
.text-link,
.meta-text,
.small-note {
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
}
.container,
.section,
.page-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 34px 22px;
}
.banner-slider {
    max-width: 1200px;
    margin: 28px auto 36px;
    border-radius: 22px;
    background: linear-gradient(135deg, #FFF5F7 0%, #FFFFFF 48%, #FFE8EE 100%);
    border: 1px solid rgba(233,66,85,0.22);
    box-shadow: 0 18px 42px rgba(184,31,53,0.14);
    overflow: hidden;
    position: relative;
}
.banner-track { position: relative; min-height: 350px; }
.banner-slide { display: none; width: 100%; }
.banner-slide.active { display: block; }
.banner-slider img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    background: #FFF9FA;
}
.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    color: #B81F35;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(122,16,34,0.16);
}
.banner-prev { left: 18px; }
.banner-next { right: 18px; }
.banner-dots {
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.banner-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: rgba(184,31,53,0.35);
    cursor: pointer;
}
.banner-dots button.active { width: 28px; border-radius: 999px; background: #B81F35; }
.category-banners {
    max-width: 1200px;
    margin: 24px auto 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 0 22px;
}
.category-banners img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 18px;
    background: #FFFFFF;
    border: 1px solid rgba(233,66,85,0.18);
    box-shadow: 0 14px 32px rgba(184,31,53,0.12);
}
.intro-strip {
    max-width: 1200px;
    margin: 0 auto 22px;
    padding: 26px 28px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F7 56%, #FFE8EE 100%);
    border: 1px solid rgba(233,66,85,0.18);
    border-radius: 22px;
    box-shadow: var(--shadow);
}
.eyebrow,
.tag {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    color: #B81F35;
    background: #FFE8EE;
    border: 1px solid rgba(233,66,85,0.18);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 14px;
}
.quick-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 0 0;
}
.quick-pills a {
    color: #B81F35;
    background: #FFFFFF;
    border: 1px solid rgba(233,66,85,0.22);
    border-radius: 999px;
    padding: 9px 16px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(184,31,53,0.08);
}
.section-head { max-width: 840px; margin: 0 auto 26px; text-align: center; }
.section-title { font-size: clamp(28px, 4vw, 42px); margin: 0 0 12px; }
.section-desc { color: #7A5D65; margin: 0; }
.grid-10,
.zone-grid,
.service-grid,
.help-grid,
.faq-grid,
.detail-grid {
    display: grid;
    gap: 18px;
}
.grid-10 { grid-template-columns: repeat(5, 1fr); }
.service-grid { grid-template-columns: repeat(3, 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); }
.detail-grid { grid-template-columns: repeat(2, 1fr); }
.card,
.zone-card,
.info-card,
.faq-item,
.detail-card,
.notice-card {
    background: #FFFFFF;
    border: 1px solid rgba(233,66,85,0.18);
    box-shadow: 0 16px 40px rgba(184,31,53,0.10);
    color: #2A1E23;
    border-radius: 20px;
    padding: 20px;
}
.category-card img,
.zone-card img,
.content-img,
.app-section img,
.hero-visual img,
.promo-banner img,
.category-banners img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
.category-card img { width: 100%; min-height: 116px; max-height: 146px; margin-bottom: 12px; background: #FFF9FA; border-radius: 16px; }
.category-card .visual-mark {
    min-height: 116px;
    margin-bottom: 12px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 20% 20%, #FFFFFF, #FFE8EE 52%, #FF7A95);
    color: #9A1730;
    font-size: 26px;
    font-weight: 700;
}
.card h3,
.zone-card h3,
.info-card h3,
.faq-item h3,
.detail-card h3 { color: #9A1730; margin: 0 0 10px; }
.card p,
.zone-card p,
.info-card p,
.faq-item p,
.detail-card p { color: #7A5D65; margin: 0 0 12px; }
.text-link { color: #B81F35; display: inline-flex; align-items: center; gap: 5px; }
.text-link:hover { color: #E94255; }
.main-btn {
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF8CA3 0%, #E94255 45%, #B81F35 100%);
    color: #FFFFFF;
    border-radius: 999px;
    box-shadow: 0 12px 26px rgba(184,31,53,0.22);
    padding: 12px 22px;
    transition: transform .2s ease, box-shadow .2s ease;
}
.main-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(184,31,53,0.28); }
.number-badge {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #FFFFFF;
    font-weight: 700;
    background: linear-gradient(135deg, #FF8CA3, #B81F35);
    margin-bottom: 12px;
}
.check-list { padding: 0; margin: 12px 0 0; list-style: none; }
.check-list li { margin: 8px 0; padding-left: 22px; position: relative; color: #2A1E23; }
.check-list li:before { content: ""; position: absolute; left: 0; top: .72em; width: 8px; height: 8px; border-radius: 50%; background: #E94255; }
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
    margin: 24px 0;
    padding: 24px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF9FA 100%);
    border: 1px solid rgba(233,66,85,0.18);
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(184,31,53,0.10);
}
.feature-row.reverse .feature-text { order: 1; }
.feature-row.reverse .feature-image { order: 2; }
.feature-image img { width: 100%; max-height: 310px; object-fit: contain; border-radius: 18px; background: #FFF5F7; }
.feature-text h2 { margin-top: 0; }
.app-section {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 34px;
    align-items: center;
    background: linear-gradient(135deg, #FFE8EE 0%, #FFFFFF 54%, #FFF5F7 100%);
    border: 1px solid rgba(233,66,85,0.20);
    border-radius: 28px;
    padding: 30px;
    box-shadow: var(--shadow);
}
.app-section img { width: 100%; max-height: 380px; object-fit: contain; }
.zone-card img { width: 100%; max-height: 180px; object-fit: contain; border-radius: 16px; background: #FFF5F7; margin-bottom: 14px; }
.decor-card {
    height: 180px;
    border-radius: 16px;
    margin-bottom: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE8EE 52%, #FF8CA3 100%);
    color: #9A1730;
    font-size: 30px;
    font-weight: 700;
}
.compliance-box {
    background: linear-gradient(135deg, #7A1022 0%, #B81F35 100%);
    color: #FFF5F7;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 18px 44px rgba(122,16,34,0.22);
}
.compliance-box h2 { color: #FFFFFF; margin-top: 0; }
.compliance-box p { color: #FFF5F7; }
.page-hero {
    max-width: 1200px;
    margin: 28px auto 8px;
    padding: 34px 22px;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 28px;
    align-items: center;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F7 54%, #FFE8EE 100%);
    border: 1px solid rgba(233,66,85,0.18);
    border-radius: 26px;
    box-shadow: var(--shadow);
}
.page-hero.no-visual { grid-template-columns: 1fr; }
.page-title { font-size: clamp(32px, 5vw, 54px); margin: 16px 0 14px; }
.hero-visual img { width: 100%; max-height: 360px; object-fit: contain; border-radius: 18px; background: #FFF9FA; }
.page-content { max-width: 980px; margin: 0 auto; padding: 26px 22px 44px; }
.page-content p { color: #2A1E23; }
.page-content .lead { color: #7A5D65; font-size: 18px; }
.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
    margin: 22px 0;
}
.content-panel,
.image-panel {
    background: #FFFFFF;
    border: 1px solid rgba(233,66,85,0.18);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 14px 34px rgba(184,31,53,0.10);
}
.image-panel img { width: 100%; max-height: 330px; object-fit: contain; border-radius: 18px; background: #FFF5F7; }
.faq-list { display: grid; gap: 16px; }
.faq-list .faq-item { padding: 22px; }
.table-like { display: grid; gap: 12px; margin-top: 18px; }
.table-like div { background: #FFF9FA; border: 1px solid rgba(233,66,85,0.14); border-radius: 16px; padding: 14px 16px; }
.site-footer {
    background: #7A1022;
    color: #FFF5F7;
    margin-top: 40px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 44px 22px 26px;
    display: grid;
    grid-template-columns: 1.3fr .8fr .8fr 1.1fr;
    gap: 26px;
}
.footer-brand img { width: 128px; max-height: 54px; object-fit: contain; margin-bottom: 14px; }
.footer-inner h3 { margin: 0 0 12px; color: #FFFFFF; }
.footer-inner p { color: #FFF5F7; margin: 0; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: #FFF5F7; font-weight: 700; }
.footer-links a:hover { color: #FFB9C7; }
.footer-bottom { border-top: 1px solid rgba(255,245,247,0.18); text-align: center; padding: 16px 22px 20px; color: #FFF5F7; }
.drawer-overlay,
.mobile-drawer { display: none; }
body.drawer-open { overflow: hidden; }
@media (max-width: 1120px) {
    .desktop-topbar { gap: 14px; padding: 0 16px; }
    .nav { gap: 10px; }
    .nav a { font-size: 14px; }
    .login-btn { padding: 9px 14px; }
    .grid-10 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
    .desktop-topbar { display: none; }
    .mobile-topbar {
        display: grid;
        grid-template-columns: 54px 1fr auto;
        gap: 8px;
        min-height: 66px;
        padding: 0 12px;
    }
    .menu-toggle {
        width: 44px;
        height: 44px;
        border: 1px solid rgba(255,255,255,0.55);
        border-radius: 12px;
        background: rgba(255,255,255,0.16);
        color: #FFFFFF;
        font-size: 24px;
        cursor: pointer;
    }
    .mobile-brand { justify-self: center; }
    .mobile-brand img { width: 122px; max-height: 50px; object-fit: contain; }
    .mobile-login { padding: 8px 12px; font-size: 13px; min-height: 38px; }
    .drawer-overlay {
        display: block;
        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;
    }
    .drawer-overlay.show { opacity: 1; visibility: visible; }
    .mobile-drawer {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 84vw;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(180deg, #FFFFFF 0%, #FFF5F7 100%);
        transform: translateX(-105%);
        transition: transform .28s ease;
        z-index: 10001;
        padding: 18px;
        box-shadow: 18px 0 36px rgba(122,16,34,0.18);
        overflow-y: auto;
    }
    .mobile-drawer.open { transform: translateX(0); }
    .drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
    .drawer-head img { width: 124px; max-height: 54px; object-fit: contain; }
    .drawer-close {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1px solid rgba(233,66,85,0.22);
        background: #FFFFFF;
        color: #B81F35;
        font-size: 26px;
        cursor: pointer;
    }
    .drawer-login { width: 100%; margin: 8px 0 14px; }
    .drawer-nav { display: grid; gap: 8px; }
    .drawer-nav a { color: #9A1730; font-weight: 700; padding: 11px 12px; border-radius: 12px; background: #FFFFFF; border: 1px solid rgba(233,66,85,0.14); }
    .banner-track { min-height: 160px; }
    .banner-arrow { width: 36px; height: 36px; font-size: 22px; }
    .grid-10,
    .zone-grid,
    .service-grid,
    .help-grid,
    .faq-grid,
    .detail-grid,
    .split-content,
    .feature-row,
    .app-section,
    .page-hero,
    .footer-inner { grid-template-columns: 1fr; }
    .category-banners { grid-template-columns: 1fr; }
    .feature-row.reverse .feature-text,
    .feature-row.reverse .feature-image { order: initial; }
    .footer-inner { gap: 20px; }
}
@media (max-width: 520px) {
    .container,
    .section,
    .page-section { padding: 28px 14px; }
    .banner-slider { margin: 18px 12px 24px; border-radius: 18px; }
    .intro-strip { margin: 0 12px 18px; padding: 20px; }
    .grid-10 { grid-template-columns: 1fr; }
    .quick-pills { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; }
    .quick-pills a { flex: 0 0 auto; }
    .page-hero { margin: 18px 12px 8px; padding: 24px 16px; }
    .feature-row,
    .app-section,
    .card,
    .zone-card,
    .info-card,
    .faq-item,
    .detail-card,
    .notice-card { border-radius: 18px; padding: 18px; }
    .category-banners { padding: 0 12px; }
}
