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

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

* { box-sizing: border-box; }

a { color: inherit; 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;
    min-height: 74px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
}

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

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

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

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

.site-nav a.active::after,
.site-nav a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    height: 2px;
    border-radius: 2px;
    background: #7A1022;
}

.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 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: .02em;
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease;
}

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

.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);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: 0;
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 12px;
    background: rgba(255,255,255,0.14);
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 10px;
}

.site-main {
    width: 100%;
}

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

.section { margin-bottom: 56px; }

.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-window { overflow: hidden; }

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

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

.banner-slider img {
    width: 100%;
    height: auto;
    max-height: 430px;
    object-fit: contain;
    background: #FFFFFF;
}

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.85);
    border-radius: 999px;
    background: rgba(122,16,34,.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;
    left: 0;
    right: 0;
    bottom: 14px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.banner-dot {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.8);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(122,16,34,.22);
}

.banner-dot.active { background: #B81F35; }

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

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;
    line-height: 1.28;
}

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

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

.hero-title { font-size: clamp(36px, 6vw, 64px); margin: 0 0 18px; }
.page-title { font-size: clamp(32px, 5vw, 52px); margin: 0 0 18px; }
.section-title { font-size: clamp(28px, 4vw, 42px); margin: 0 0 14px; }
.section-desc { color: #7A5D65; max-width: 820px; margin: 0 0 24px; }

.brand-strip,
.notice-strip,
.page-hero,
.app-section,
.feature-row,
.long-form,
.contact-panel {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF9FA 55%, #FFE8EE 100%);
    border: 1px solid rgba(233,66,85,0.18);
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(184,31,53,0.10);
}

.brand-strip {
    max-width: 1200px;
    margin: 0 auto 38px;
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 270px;
    gap: 28px;
    align-items: center;
}

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

.brand-strip img {
    border-radius: 20px;
    background: #FFFFFF;
    border: 1px solid rgba(233,66,85,0.18);
}

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

.quick-pills a {
    display: inline-flex;
    align-items: center;
    padding: 9px 16px;
    background: #FFFFFF;
    border: 1px solid rgba(233,66,85,0.22);
    border-radius: 999px;
    color: #B81F35;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(184,31,53,0.08);
}

.grid-10,
.info-grid,
.zone-grid,
.help-grid,
.faq-grid,
.promo-grid {
    display: grid;
    gap: 18px;
}

.grid-10 { grid-template-columns: repeat(5, 1fr); }
.info-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); }
.promo-grid { grid-template-columns: repeat(3, 1fr); }

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

.card h3,
.info-card h3,
.zone-card h3,
.help-card h3,
.faq-item h3,
.promo-card h3 {
    color: #B81F35;
    margin: 0 0 10px;
}

.card p,
.info-card p,
.zone-card p,
.help-card p,
.faq-item p,
.promo-card p { color: #7A5D65; margin: 0 0 12px; }

.card-number,
.red-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border-radius: 999px;
    background: #FFE8EE;
    color: #B81F35;
    font-weight: 700;
    margin-bottom: 14px;
}

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

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    padding: 26px;
    align-items: center;
    margin-bottom: 24px;
}

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

.feature-media img,
.zone-card img,
.app-section img,
.hero-visual img,
.promo-card img {
    width: 100%;
    border-radius: 20px;
    background: #FFFFFF;
    border: 1px solid rgba(233,66,85,0.18);
    box-shadow: 0 14px 32px rgba(184,31,53,0.10);
}

.feature-text ul,
.info-card ul,
.long-form ul,
.help-card ul,
.contact-panel ul { margin: 12px 0 0; padding-left: 20px; }

.feature-text li,
.info-card li,
.long-form li,
.help-card li,
.contact-panel li { margin-bottom: 8px; }

.app-section {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 32px;
    padding: 30px;
    align-items: center;
}

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

.zone-card img,
.promo-card img { margin: -4px 0 18px; max-height: 190px; }

.notice-strip {
    padding: 24px;
    border-left: 6px solid #B81F35;
}

.notice-strip p { margin: 0; color: #2A1E23; }

.page-hero {
    max-width: 1200px;
    margin: 30px auto 30px;
    padding: 34px;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 28px;
    align-items: center;
}

.page-hero.no-image { display: block; }

.page-hero p { color: #7A5D65; font-size: 18px; margin: 0; }

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

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

.category-banners img {
    width: 100%;
    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);
}

.content-layout {
    max-width: 1200px;
    margin: 0 auto 56px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.long-form { padding: 28px; }
.long-form p { margin: 0 0 18px; color: #2A1E23; }
.long-form h2 { margin-top: 30px; }
.long-form h2:first-child { margin-top: 0; }

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

.side-card img { width: 100%; max-height: 320px; object-fit: contain; }

.faq-answer { color: #7A5D65; }

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

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 46px 20px 28px;
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 28px;
}

.footer-brand p { color: rgba(255,245,247,.86); margin: 18px 0 0; }
.footer-col h3 { color: #FFFFFF; margin: 0 0 14px; }
.footer-col a { display: block; color: rgba(255,245,247,.86); margin-bottom: 9px; }
.footer-col a:hover { color: #FFFFFF; text-decoration: underline; }
.footer-note { border-top: 1px solid rgba(255,255,255,.18); max-width: 1200px; margin: 0 auto; padding: 18px 20px 28px; color: rgba(255,245,247,.82); }
.footer-note p { margin: 6px 0; }

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.42);
    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 .28s ease;
    box-shadow: 18px 0 36px rgba(122,16,34,.18);
    padding: 18px;
    overflow-y: auto;
}

.menu-open .drawer-overlay { opacity: 1; pointer-events: auto; }
.menu-open .mobile-drawer { transform: translateX(0); }
.menu-open { overflow: hidden; }

.drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.drawer-close { width: 40px; height: 40px; border: 0; border-radius: 999px; background: #FFE8EE; color: #B81F35; font-size: 28px; line-height: 1; }
.drawer-login { width: 100%; margin-bottom: 16px; }
.drawer-nav { display: grid; gap: 8px; }
.drawer-nav a { color: #B81F35; font-weight: 700; padding: 12px 14px; border-radius: 12px; background: #FFFFFF; border: 1px solid rgba(233,66,85,0.12); }
.drawer-nav a.active { background: #FFE8EE; color: #7A1022; }

.contact-panel { padding: 28px; }
.contact-list { display: grid; gap: 14px; margin-top: 18px; }
.contact-list div { background: #FFFFFF; border: 1px solid rgba(233,66,85,0.18); border-radius: 16px; padding: 16px; }

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

@media (max-width: 900px) {
    .header-inner {
        min-height: 68px;
        grid-template-columns: 52px 1fr auto;
        gap: 10px;
    }
    .menu-toggle { display: inline-flex; }
    .site-nav { display: none; }
    .brand { justify-self: center; }
    .brand img { width: 116px; }
    .login-btn { padding: 9px 14px; font-size: 13px; }
    .brand-strip,
    .page-hero,
    .app-section,
    .content-layout,
    .feature-row { grid-template-columns: 1fr; }
    .brand-strip { margin-left: 20px; margin-right: 20px; }
    .brand-strip img { max-width: 310px; margin: 0 auto; }
    .grid-10,
    .info-grid,
    .zone-grid,
    .help-grid,
    .promo-grid,
    .faq-grid { grid-template-columns: repeat(2, 1fr); }
    .category-banners { grid-template-columns: 1fr; }
    .side-card { position: static; }
    .feature-row.reverse .feature-text,
    .feature-row.reverse .feature-media { order: initial; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
    .container,
    .section { padding: 0 16px; }
    .banner-slider { margin: 18px 14px 28px; border-radius: 18px; }
    .banner-arrow { width: 34px; height: 34px; font-size: 24px; }
    .banner-prev { left: 8px; }
    .banner-next { right: 8px; }
    .grid-10,
    .info-grid,
    .zone-grid,
    .help-grid,
    .promo-grid,
    .faq-grid { grid-template-columns: 1fr; }
    .page-hero { margin: 20px 14px 24px; padding: 24px; }
    .content-layout { padding: 0 14px; }
    .feature-row,
    .app-section,
    .long-form,
    .contact-panel { padding: 20px; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-note { padding-bottom: 24px; }
}
