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

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

.header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
}

.desktop-header {
    justify-content: space-between;
    gap: 18px;
}

.mobile-header {
    display: none;
    justify-content: space-between;
    min-height: 68px;
}

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

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

.nav a {
    color: #FFFFFF;
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
    position: relative;
    padding: 8px 0;
    transition: color .2s ease, transform .2s ease;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: #7A1022;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

.nav a:hover,
.nav a.active {
    color: #7A1022;
}

.nav a:hover::after,
.nav a.active::after {
    transform: scaleX(1);
}

.login-btn {
    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: 10px 18px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

.login-btn:hover,
.main-btn:hover,
.text-link:hover {
    transform: translateY(-2px);
}

.main-btn {
    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: 12px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    margin: 56px auto;
}

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

.text-link {
    color: #B81F35;
    display: inline-flex;
    margin-top: 8px;
    transition: transform .2s ease, color .2s ease;
}

.text-link::after {
    content: " →";
    margin-left: 5px;
}

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

.section-head p,
.page-intro,
.section-desc {
    color: #7A5D65;
    font-size: 17px;
}

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

.banner-slide {
    min-width: 100%;
    background: #FFFFFF;
}

.banner-slider img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.75);
    background: rgba(122,16,34,0.72);
    color: #FFFFFF;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.55);
    cursor: pointer;
}

.banner-dot.active {
    background: #E94255;
    border-color: #E94255;
}

.brand-strip {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF9FA 52%, #FFE8EE 100%);
    border: 1px solid rgba(233,66,85,0.18);
    box-shadow: 0 16px 40px rgba(184,31,53,0.10);
    border-radius: 20px;
    padding: 24px 28px;
    color: #2A1E23;
}

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

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

.category-grid,
.zone-grid,
.info-grid,
.service-grid,
.news-grid,
.faq-grid {
    display: grid;
    gap: 20px;
}

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

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

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

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

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

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

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

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

.category-card img {
    width: 100%;
    max-height: 138px;
    margin: 0 auto 14px;
}

.category-card h3,
.zone-card h3,
.info-card h3,
.news-card h3,
.content-card h3 {
    color: #B81F35;
    margin: 0 0 10px;
}

.category-card p,
.zone-card p,
.info-card p,
.news-card p,
.content-card p {
    color: #7A5D65;
    margin: 0 0 12px;
}

.service-number,
.info-number,
.badge {
    color: #E94255;
    font-weight: 700;
    letter-spacing: .02em;
}

.badge {
    background: #FFE8EE;
    border-radius: 999px;
    padding: 4px 10px;
    display: inline-flex;
    margin-bottom: 12px;
}

.service-card ul,
.info-card ul,
.alternating-copy ul,
.app-copy ul,
.page-list {
    padding-left: 20px;
    margin: 14px 0 0;
}

.service-card li,
.info-card li,
.alternating-copy li,
.app-copy li,
.page-list li {
    margin: 7px 0;
}

.alternating-row,
.app-section,
.hero-panel,
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
}

.alternating-row {
    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: 24px;
}

.alternating-visual,
.hero-visual,
.app-visual {
    background: linear-gradient(135deg, #FFF9FA 0%, #FFFFFF 55%, #FFE8EE 100%);
    border-radius: 20px;
    border: 1px solid rgba(233,66,85,0.16);
    padding: 18px;
}

.alternating-visual img,
.app-section img,
.hero-visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.alternating-copy h2,
.app-copy h2,
.hero-copy h1 {
    margin-top: 0;
}

.app-section {
    background: linear-gradient(135deg, #FFE8EE 0%, #FFFFFF 52%, #FFF5F7 100%);
    border: 1px solid rgba(233,66,85,0.18);
    border-radius: 26px;
    box-shadow: 0 18px 42px rgba(184,31,53,0.12);
    padding: 28px;
}

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

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

.page-hero {
    padding: 46px 0 14px;
}

.hero-panel {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF9FA 50%, #FFE8EE 100%);
    border: 1px solid rgba(233,66,85,0.18);
    border-radius: 26px;
    box-shadow: 0 18px 42px rgba(184,31,53,0.12);
    padding: 34px;
}

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

.page-title {
    font-size: clamp(32px, 4vw, 52px);
    margin: 0 0 16px;
}

.section-title {
    font-size: clamp(26px, 3vw, 38px);
    margin: 0 0 14px;
}

.page-content {
    max-width: 980px;
    margin: 0 auto 62px;
}

.page-content p {
    color: #2A1E23;
    font-size: 17px;
}

.page-content h2,
.page-content h3 {
    margin-top: 34px;
}

.page-content h2 {
    color: #9A1730;
}

.page-content h3 {
    color: #B81F35;
}

.notice-box {
    background: #FFFFFF;
    border-left: 5px solid #E94255;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 14px 32px rgba(184,31,53,0.10);
    margin: 28px 0;
}

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

.contact-form input,
.contact-form textarea,
.contact-form select {
    font-family: "Charis SIL", Georgia, serif;
    border: 1px solid rgba(233,66,85,0.22);
    border-radius: 14px;
    padding: 12px 14px;
    color: #2A1E23;
    background: #FFF9FA;
    font-size: 16px;
}

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

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 42px 20px;
}

.footer-brand {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    align-items: center;
    border-bottom: 1px solid rgba(255,245,247,0.20);
    padding-bottom: 24px;
}

.footer-brand p,
.footer-note p {
    color: #FFF5F7;
    margin: 0;
}

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

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

.footer-grid a {
    color: #FFF5F7;
    display: block;
    margin: 8px 0;
}

.menu-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.65);
    background: rgba(255,255,255,0.14);
    border-radius: 12px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: #FFFFFF;
    border-radius: 999px;
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.42);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

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

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

.drawer-open .drawer-overlay {
    opacity: 1;
    pointer-events: auto;
}

.drawer-open {
    overflow: hidden;
}

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

.drawer-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(233,66,85,0.25);
    background: #FFF5F7;
    color: #B81F35;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

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

.drawer-nav a {
    display: block;
    color: #B81F35;
    font-weight: 700;
    padding: 12px 6px;
    border-bottom: 1px solid rgba(233,66,85,0.14);
}

.drawer-nav a.active {
    color: #7A1022;
}

@media (max-width: 1180px) {
    .nav { gap: 12px; }
    .nav a { font-size: 14px; }
    .category-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 980px) {
    .desktop-header { display: none; }
    .mobile-header { display: flex; }
    .mobile-brand img { height: 46px; }
    .mobile-login { padding: 8px 12px; font-size: 13px; }
    .category-grid,
    .zone-grid,
    .service-grid,
    .news-grid,
    .info-grid,
    .faq-grid,
    .footer-grid,
    .category-banners {
        grid-template-columns: repeat(2, 1fr);
    }
    .alternating-row,
    .app-section,
    .hero-panel,
    .two-col {
        grid-template-columns: 1fr;
    }
    .footer-brand {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .header-inner { padding: 10px 14px; }
    .section { margin: 42px auto; }
    .container { padding: 0 14px; }
    .banner-slider { margin: 18px 14px 28px; border-radius: 18px; }
    .banner-arrow { width: 34px; height: 34px; font-size: 20px; }
    .category-grid,
    .zone-grid,
    .service-grid,
    .news-grid,
    .info-grid,
    .faq-grid,
    .footer-grid,
    .category-banners {
        grid-template-columns: 1fr;
    }
    .brand-strip,
    .alternating-row,
    .app-section,
    .hero-panel,
    .card,
    .zone-card,
    .info-card,
    .faq-item,
    .news-card,
    .content-card {
        padding: 18px;
        border-radius: 18px;
    }
    .brand img,
    .mobile-brand img,
    .drawer-logo img,
    .footer-brand img {
        height: 42px;
    }
}
