:root {
    --main-bg: #FFF5F7;
    --soft-bg: #FFE8EE;
    --light-bg: #FFF9FA;
    --white: #FFFFFF;
    --red: #E94255;
    --pink: #FF7A95;
    --deep-red: #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: #FFF5F7;
    color: #2A1E23;
    line-height: 1.72;
}
a { text-decoration: none; }
img { display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 22px; }
.site-header {
    background: #F06F86;
    color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(184,31,53,0.18);
    position: sticky;
    top: 0;
    z-index: 9999;
}
.desktop-header { min-height: 78px; display: grid; grid-template-columns: 150px minmax(0, 1fr) auto; align-items: center; gap: 18px; }
.brand img, .mobile-brand img, .drawer-brand img { height: 50px; width: auto; object-fit: contain; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: 12px; min-width: 0; }
.site-nav a {
    color: #FFFFFF;
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
    padding: 28px 0 23px;
    border-bottom: 2px solid transparent;
    transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.site-nav a:hover, .site-nav a.active { color: #7A1022; border-bottom-color: #7A1022; transform: translateY(-1px); }
.login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 20px;
    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);
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease;
}
.login-btn:hover { transform: translateY(-2px); box-shadow: 0 15px 28px rgba(184,31,53,0.18); }
.mobile-header { display: none; min-height: 68px; padding: 0 14px; align-items: center; justify-content: space-between; }
.menu-toggle { width: 44px; height: 44px; border: 0; border-radius: 12px; background: rgba(255,255,255,0.22); display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; padding: 0 11px; }
.menu-toggle span { height: 2px; width: 100%; background: #FFFFFF; border-radius: 99px; }
.mobile-login { min-height: 38px; padding: 8px 13px; font-size: 13px; }
.drawer-overlay { position: fixed; inset: 0; background: rgba(30, 11, 17, .48); z-index: 10000; 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: 10001; transform: translateX(-105%); transition: transform .3s ease; box-shadow: 20px 0 42px rgba(122,16,34,.22); padding: 18px; overflow-y: auto; }
.drawer-open .drawer-overlay { opacity: 1; pointer-events: auto; }
.drawer-open .mobile-drawer { transform: translateX(0); }
.drawer-open { overflow: hidden; }
.drawer-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.drawer-close { width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 12px; background: #FFFFFF; color: #B81F35; font-size: 28px; line-height: 1; }
.drawer-login { width: 100%; margin-bottom: 18px; }
.drawer-nav { display: grid; gap: 8px; }
.drawer-nav a { color: #7A1022; font-weight: 700; padding: 12px 14px; border-radius: 14px; border: 1px solid rgba(233,66,85,0.12); background: rgba(255,255,255,.78); }
.drawer-nav a.active, .drawer-nav a:hover { color: #B81F35; background: #FFE8EE; }
.site-main { padding-bottom: 0; }
h1,
.page-title,
.hero-title {
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    color: #9A1730;
    line-height: 1.12;
}
h2,
.section-title {
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    color: #9A1730;
    line-height: 1.2;
}
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; }
.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);
    border: 0;
    min-height: 46px;
    padding: 12px 24px;
    transition: transform .2s ease, box-shadow .2s ease;
}
.main-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 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; }
.banner-slide { display: none; background: #FFFFFF; }
.banner-slide.active { display: block; }
.banner-slide img { width: 100%; max-height: 430px; object-fit: contain; background: #FFF9FA; }
.banner-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.76); border-radius: 999px; background: rgba(184,31,53,.68); color: #FFFFFF; font-size: 30px; line-height: 1; display: grid; place-items: center; cursor: pointer; }
.banner-prev { left: 16px; }
.banner-next { right: 16px; }
.banner-dots { position: absolute; bottom: 15px; left: 0; right: 0; display: flex; justify-content: center; gap: 9px; }
.banner-dot { width: 11px; height: 11px; border-radius: 50%; border: 1px solid #FFFFFF; background: rgba(255,255,255,.65); cursor: pointer; }
.banner-dot.active { background: #B81F35; }
.intro-strip, .responsible-strip { max-width: 1200px; margin: 0 auto 34px; padding: 26px 30px; background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F7 48%, #FFE8EE 100%); border: 1px solid var(--border); border-radius: 22px; box-shadow: var(--shadow); }
.intro-strip p, .responsible-strip p { margin: 0; color: var(--text); font-size: 18px; }
.section { max-width: 1200px; margin: 0 auto 48px; padding: 0 22px; }
.section-head { max-width: 860px; margin-bottom: 22px; }
.section-title { font-size: clamp(28px, 4vw, 42px); margin: 0 0 12px; }
.section-desc { color: var(--muted); font-size: 17px; margin: 0; }
.quick-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 0; }
.quick-pills a { background: #FFFFFF; color: #B81F35; border: 1px solid rgba(233,66,85,0.2); border-radius: 999px; padding: 10px 16px; font-weight: 700; box-shadow: 0 8px 20px rgba(184,31,53,.08); }
.grid-10 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.category-card, .card, .zone-card, .info-card, .faq-item, .content-panel {
    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;
}
.category-card { overflow: hidden; display: flex; flex-direction: column; min-height: 100%; }
.category-card img { width: 100%; height: 120px; object-fit: contain; background: #FFF9FA; padding: 10px; }
.category-card .category-body { padding: 16px; }
.category-card h3 { color: #B81F35; margin: 0 0 8px; font-size: 19px; }
.category-card p { color: var(--muted); margin: 0 0 12px; font-size: 15px; line-height: 1.55; }
.category-mark { height: 120px; display: grid; place-items: center; background: radial-gradient(circle, #FFE8EE, #FFFFFF); color: #B81F35; font-size: 42px; font-weight: 700; }
.service-grid, .safety-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card, .info-card { padding: 24px; }
.card-number, .info-number { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 50%; background: #FFE8EE; color: #B81F35; font-weight: 700; margin-bottom: 16px; }
.card h3, .info-card h3 { margin: 0 0 10px; color: #9A1730; font-size: 22px; }
.card ul, .info-card ul { margin: 14px 0 0; padding-left: 20px; color: #7A5D65; }
.alternating { display: grid; gap: 24px; }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; background: linear-gradient(135deg, #FFFFFF 0%, #FFF9FA 100%); border: 1px solid var(--border); border-radius: 24px; padding: 24px; box-shadow: var(--shadow); }
.feature-row.reverse .feature-text { order: 1; }
.feature-row.reverse .feature-media { order: 2; }
.feature-media img, .content-img, .zone-card img, .app-section img, .banner-slider img, .hero-visual img, .promo-banner img, .category-banners img { max-width: 100%; height: auto; object-fit: contain; }
.feature-media img { width: 100%; max-height: 290px; border-radius: 18px; background: #FFF5F7; }
.feature-text h3 { color: #9A1730; font-size: 28px; margin: 0 0 12px; }
.feature-text p { margin: 0 0 12px; color: var(--text); }
.feature-text ul { color: var(--muted); margin: 0 0 14px; padding-left: 22px; }
.zone-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.zone-card { overflow: hidden; min-height: 100%; }
.zone-card img { width: 100%; height: 155px; object-fit: contain; background: #FFF9FA; padding: 10px; }
.zone-graphic { height: 155px; display: grid; place-items: center; background: linear-gradient(135deg, #FFE8EE, #FFFFFF); color: #B81F35; font-size: 44px; font-weight: 700; }
.zone-body { padding: 20px; }
.zone-label { color: #E94255; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .04em; }
.zone-card h3 { margin: 8px 0 10px; color: #9A1730; }
.zone-card p { color: #7A5D65; margin: 0 0 14px; }
.app-section { max-width: 1200px; margin: 0 auto 48px; padding: 34px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; align-items: center; background: linear-gradient(135deg, #FFE8EE 0%, #FFFFFF 52%, #FFF5F7 100%); border: 1px solid rgba(233,66,85,.22); border-radius: 26px; box-shadow: var(--shadow); }
.app-section img { width: 100%; max-height: 360px; }
.app-section h2 { margin: 0 0 14px; font-size: clamp(30px, 4vw, 44px); }
.app-section p { margin: 0 0 16px; }
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 16px; padding: 0; margin: 0 0 18px; list-style: none; }
.check-list li { position: relative; padding-left: 24px; color: #7A5D65; font-weight: 700; }
.check-list li:before { content: ""; position: absolute; left: 0; top: .75em; width: 9px; height: 9px; border-radius: 50%; background: #E94255; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.faq-item { padding: 22px; }
.faq-item h3 { margin: 0 0 10px; color: #B81F35; }
.faq-answer { margin: 0; color: #7A5D65; }
.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);
}
.page-hero { max-width: 1200px; margin: 0 auto 38px; padding: 0 22px; display: grid; grid-template-columns: 1.08fr .92fr; gap: 28px; align-items: center; }
.page-hero.no-image { grid-template-columns: 1fr; }
.hero-copy { background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F7 54%, #FFE8EE 100%); border: 1px solid rgba(233,66,85,.2); border-radius: 26px; box-shadow: var(--shadow); padding: 34px; }
.eyebrow { color: #E94255; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero-title, .page-title { font-size: clamp(36px, 5vw, 58px); margin: 12px 0 18px; }
.hero-copy p { margin: 0; color: #7A5D65; font-size: 18px; }
.hero-visual { background: #FFFFFF; border: 1px solid var(--border); border-radius: 24px; box-shadow: var(--shadow); padding: 18px; }
.hero-visual img { width: 100%; max-height: 360px; }
.content-section { max-width: 1200px; margin: 0 auto 46px; padding: 0 22px; }
.content-panel { padding: 30px; margin-bottom: 22px; }
.content-panel h2 { margin-top: 0; font-size: 30px; }
.content-panel p { color: #2A1E23; margin: 0 0 14px; }
.content-panel p:last-child { margin-bottom: 0; }
.two-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.notice-box { background: #FFF9FA; border: 1px solid rgba(233,66,85,.18); border-radius: 18px; padding: 20px; }
.notice-box h3 { margin-top: 0; color: #B81F35; }
.notice-box ul { padding-left: 22px; margin-bottom: 0; color: #7A5D65; }
.form-card { display: grid; gap: 14px; }
.form-row { display: grid; gap: 6px; }
.form-row label { color: #7A1022; font-weight: 700; }
.form-row input, .form-row textarea { width: 100%; border: 1px solid rgba(233,66,85,.24); border-radius: 14px; padding: 12px 14px; font-family: "Charis SIL", Georgia, serif; font-size: 16px; background: #FFF9FA; color: #2A1E23; }
.form-row textarea { min-height: 132px; resize: vertical; }
.site-footer { background: #7A1022; color: #FFF5F7; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr 1fr; gap: 26px; padding-top: 42px; padding-bottom: 34px; }
.footer-brand img { height: 56px; width: auto; margin-bottom: 12px; }
.site-footer h3 { margin: 0 0 12px; color: #FFFFFF; }
.site-footer p { color: #FFF5F7; margin: 0; }
.site-footer a { display: block; color: #FFE8EE; margin: 6px 0; font-weight: 700; }
.site-footer a:hover { color: #FFFFFF; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.18); text-align: center; padding: 16px 22px; color: #FFE8EE; }
@media (max-width: 1080px) {
    .desktop-header { display: none; }
    .mobile-header { display: flex; }
    .grid-10 { grid-template-columns: repeat(3, 1fr); }
    .page-hero, .app-section, .feature-row { grid-template-columns: 1fr; }
    .feature-row.reverse .feature-text, .feature-row.reverse .feature-media { order: initial; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
    .container, .section, .content-section, .page-hero { padding-left: 16px; padding-right: 16px; }
    .banner-slider { margin: 18px 14px 28px; border-radius: 18px; }
    .banner-slide img { max-height: 260px; }
    .banner-arrow { width: 36px; height: 36px; font-size: 24px; }
    .grid-10, .service-grid, .safety-grid, .zone-grid, .faq-grid, .two-col, .category-banners { grid-template-columns: 1fr; }
    .intro-strip, .responsible-strip { margin-left: 16px; margin-right: 16px; padding: 20px; }
    .intro-strip p, .responsible-strip p { font-size: 16px; }
    .check-list { grid-template-columns: 1fr; }
    .app-section { margin-left: 16px; margin-right: 16px; padding: 22px; }
    .content-panel, .hero-copy { padding: 22px; }
    .footer-grid { grid-template-columns: 1fr; }
    .category-card img, .zone-card img, .zone-graphic, .category-mark { height: 135px; }
}
@media (max-width: 390px) {
    .mobile-login { padding: 8px 10px; font-size: 12px; }
    .mobile-brand img { height: 44px; }
}
