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

body {
    background: #FFF5F7;
    color: #2A1E23;
    line-height: 1.7;
}

* {
    box-sizing: border-box;
}

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

a {
    text-decoration: none;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #F06F86;
    color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(184,31,53,0.18);
}

.desktop-header {
    min-height: 74px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
}

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

.brand-logo img {
    width: 142px;
    max-height: 54px;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.desktop-nav a {
    color: #FFFFFF;
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
    padding: 24px 0 20px;
    border-bottom: 2px solid transparent;
    transition: color .2s ease, border-color .2s ease, transform .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
    color: #7A1022;
    border-bottom-color: #7A1022;
}

.login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    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: 11px 20px;
    letter-spacing: .02em;
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(184,31,53,0.18);
    background: #FFF9FA;
}

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

.mobile-logo img,
.drawer-logo img {
    width: 128px;
    max-height: 50px;
    object-fit: contain;
}

.menu-toggle,
.drawer-close {
    border: 0;
    background: rgba(255,255,255,.18);
    color: #FFFFFF;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 24px;
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    cursor: pointer;
}

.mobile-login {
    justify-self: end;
    padding: 9px 13px;
    font-size: 13px;
}

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

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

.drawer-open {
    overflow: hidden;
}

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

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

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

.drawer-close {
    color: #B81F35;
    background: #FFE8EE;
}

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

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

.drawer-nav a {
    color: #7A1022;
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    background: #FFFFFF;
    border: 1px solid rgba(233,66,85,0.16);
    border-radius: 14px;
    padding: 12px 14px;
}

.drawer-nav a.is-active,
.drawer-nav a:hover {
    color: #B81F35;
    background: #FFE8EE;
}

main {
    display: block;
}

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

h2,
.section-title {
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    color: #9A1730;
    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;
}

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

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

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

.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    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: 13px 24px;
    border: 0;
    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);
}

.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: 300px;
}

.banner-slide {
    display: none;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
}

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

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

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .88);
    color: #B81F35;
    box-shadow: 0 10px 22px rgba(184,31,53,0.16);
    font-size: 28px;
    cursor: pointer;
}

.banner-prev { left: 16px; }
.banner-next { right: 16px; }

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

.banner-dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    border: 0;
    background: rgba(184,31,53,.28);
    cursor: pointer;
}

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

.category-banners {
    max-width: 1200px;
    margin: 24px auto 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

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

.section {
    padding: 34px 0;
}

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

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

.section-desc {
    color: #7A5D65;
    font-size: 17px;
    margin: 0;
}

.brand-strip,
.responsible-box,
.notice-box {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F7 54%, #FFE8EE 100%);
    border: 1px solid rgba(233,66,85,0.18);
    box-shadow: 0 16px 40px rgba(184,31,53,0.10);
    border-radius: 22px;
    padding: 26px;
}

.brand-strip p,
.responsible-box p,
.notice-box p {
    margin: 0;
    color: #2A1E23;
    font-size: 17px;
}

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

.quick-pills a {
    color: #B81F35;
    background: #FFFFFF;
    border: 1px solid rgba(233,66,85,0.22);
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(184,31,53,.08);
}

.quick-pills a:hover {
    background: #FFE8EE;
}

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

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.category-card {
    padding: 16px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.category-card img {
    width: 100%;
    height: 132px;
    object-fit: contain;
    background: #FFF9FA;
    border-radius: 16px;
    margin-bottom: 12px;
}

.category-card h3,
.service-card h3,
.zone-card h3,
.info-card h3 {
    color: #9A1730;
    margin: 0 0 8px;
    font-size: 21px;
}

.category-card p,
.service-card p,
.zone-card p,
.info-card p {
    color: #7A5D65;
    margin: 0 0 10px;
}

.service-grid,
.info-grid,
.help-grid,
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card,
.info-card {
    padding: 24px;
}

.card-number,
.info-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #FFE8EE;
    color: #B81F35;
    font-weight: 700;
    margin-bottom: 16px;
}

.point-list {
    margin: 14px 0 0;
    padding-left: 20px;
    color: #2A1E23;
}

.point-list li {
    margin: 6px 0;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
    margin: 28px 0;
    background: #FFFFFF;
    border: 1px solid rgba(233,66,85,0.18);
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(184,31,53,0.10);
    padding: 22px;
}

.feature-row.reverse .feature-copy {
    order: 1;
}

.feature-row.reverse .feature-media {
    order: 2;
}

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

.feature-media {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF9FA;
    border-radius: 20px;
    padding: 12px;
}

.feature-media img {
    max-height: 260px;
}

.feature-copy h2 {
    margin-top: 0;
    font-size: clamp(26px, 3vw, 36px);
}

.feature-copy p {
    color: #7A5D65;
}

.zone-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.zone-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.zone-card img,
.zone-visual {
    width: 100%;
    min-height: 164px;
    object-fit: contain;
    background: linear-gradient(135deg, #FFF9FA 0%, #FFE8EE 100%);
}

.zone-body {
    padding: 22px;
}

.zone-label,
.eyebrow {
    display: inline-flex;
    color: #B81F35;
    background: #FFE8EE;
    border-radius: 999px;
    padding: 5px 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.zone-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B81F35;
    font-size: 44px;
    font-weight: 700;
}

.app-section {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 30px;
    align-items: center;
    background: linear-gradient(135deg, #FFE8EE 0%, #FFFFFF 55%, #FFF5F7 100%);
    border: 1px solid rgba(233,66,85,0.18);
    border-radius: 26px;
    box-shadow: 0 16px 40px rgba(184,31,53,0.10);
    padding: 28px;
}

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

.app-section h2 {
    margin-top: 0;
}

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

.faq-card h3,
.help-card h3 {
    color: #9A1730;
    margin: 0 0 10px;
}

.faq-answer,
.help-card p {
    color: #7A5D65;
    margin: 0;
}

.page-hero {
    max-width: 1200px;
    margin: 28px auto;
    padding: 34px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F7 50%, #FFE8EE 100%);
    border: 1px solid rgba(233,66,85,0.18);
    border-radius: 28px;
    box-shadow: 0 16px 40px rgba(184,31,53,0.10);
}

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

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

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid rgba(233,66,85,0.14);
    border-radius: 24px;
    padding: 16px;
}

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

.article-layout {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 24px;
    align-items: start;
}

.article-card {
    padding: 26px;
}

.article-card h2,
.article-card h3 {
    margin-top: 0;
    color: #9A1730;
}

.article-card p {
    color: #7A5D65;
}

.article-card + .article-card {
    margin-top: 20px;
}

.side-stack {
    display: grid;
    gap: 20px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.contact-list li {
    background: #FFF9FA;
    border: 1px solid rgba(233,66,85,0.16);
    border-radius: 16px;
    padding: 14px;
}

footer,
.site-footer {
    background: #7A1022;
    color: #FFF5F7;
    margin-top: 40px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 28px;
    padding: 44px 0 24px;
}

.footer-logo img {
    width: 148px;
    max-height: 54px;
    object-fit: contain;
    margin-bottom: 12px;
}

.footer-brand p,
.footer-note p {
    color: #FFF5F7;
    opacity: .88;
}

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

.footer-links h3 {
    color: #FFFFFF;
    margin: 0 0 10px;
}

.footer-links a {
    color: #FFF5F7;
    opacity: .9;
}

.footer-links a:hover {
    opacity: 1;
    color: #FFE8EE;
}

.footer-note {
    border-top: 1px solid rgba(255,255,255,.16);
    padding: 20px 0 30px;
}

@media (max-width: 1100px) {
    .desktop-nav {
        gap: 10px;
    }
    .desktop-nav a {
        font-size: 14px;
    }
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .zone-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .desktop-header {
        display: none;
    }
    .mobile-header {
        display: grid;
    }
    .banner-slider {
        margin: 18px 16px 28px;
        border-radius: 18px;
    }
    .banner-track {
        min-height: 170px;
    }
    .banner-slide img {
        max-height: 260px;
    }
    .category-banners {
        width: min(100% - 32px, 1200px);
        grid-template-columns: 1fr;
        margin: 18px auto 24px;
    }
    .service-grid,
    .info-grid,
    .help-grid,
    .faq-grid,
    .zone-grid,
    .article-layout,
    .page-hero.with-visual,
    .app-section {
        grid-template-columns: 1fr;
    }
    .feature-row,
    .feature-row.reverse {
        grid-template-columns: 1fr;
    }
    .feature-row.reverse .feature-copy,
    .feature-row.reverse .feature-media {
        order: initial;
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1200px);
    }
    .mobile-logo img {
        width: 112px;
    }
    .mobile-login {
        padding: 8px 10px;
        font-size: 12px;
    }
    .menu-toggle {
        width: 38px;
        height: 38px;
    }
    .category-grid,
    .service-grid,
    .info-grid,
    .help-grid,
    .faq-grid,
    .zone-grid {
        grid-template-columns: 1fr;
    }
    .page-hero {
        padding: 24px;
        margin: 20px 12px;
        border-radius: 22px;
    }
    .section {
        padding: 24px 0;
    }
    .brand-strip,
    .responsible-box,
    .notice-box,
    .app-section,
    .feature-row,
    .article-card,
    .service-card,
    .info-card,
    .faq-card,
    .help-card {
        padding: 20px;
    }
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .banner-arrow {
        width: 38px;
        height: 38px;
        font-size: 22px;
    }
}
