:root {
    --bg: #FFF8FB; --surface: #FFFFFF; --soft: #FFF0F6; --lilac: #F7F3FF; --muted-bg: #F8F4F6;
    --title: #32262D; --text: #51444C; --muted: #7C6D76; --quiet: #A09199;
    --pink: #FF5D9E; --berry: #D94C83; --coral: #FF8EAC; --purple: #8C76E8; --deep-purple: #6753B5;
    --border: rgba(255, 93, 158, .15); --shadow: 0 14px 36px rgba(76, 48, 66, .08); --strong-shadow: 0 18px 46px rgba(217, 76, 131, .15);
    --gradient: linear-gradient(135deg, #FF8EAC 0%, #FF5D9E 52%, #8C76E8 100%); --footer: #30242B; --footer-text: #FFEAF2;
    --container: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif; line-height: 1.75; overflow-x: hidden; }
body.menu-locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--berry); }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(140, 118, 232, .48); outline-offset: 3px; }
img { display: block; max-width: 100%; height: auto; }
p, h1, h2, h3 { margin-top: 0; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 3000; padding: 10px 14px; background: #fff; color: var(--title); border-radius: 10px; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.notice-bar { background: #fff; border-bottom: 1px solid var(--border); color: var(--muted); font-size: .86rem; }
.notice-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.notice-inner p { margin: 0; }
.notice-links { display: flex; gap: 18px; }
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255, 248, 251, .94); border-bottom: 1px solid rgba(255, 93, 158, .1); backdrop-filter: blur(18px); }
.desktop-nav { height: 72px; display: grid; grid-template-columns: minmax(190px, 1fr) auto minmax(250px, 1fr); align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--title); font-weight: 850; letter-spacing: -.02em; white-space: nowrap; }
.brand img { max-height: 48px; width: auto; }
.brand-mark { width: 36px; height: 36px; display: inline-grid; place-items: center; color: #fff; background: var(--gradient); border-radius: 12px; box-shadow: var(--strong-shadow); }
.primary-nav { display: flex; justify-content: center; align-items: center; gap: 6px; white-space: nowrap; }
.primary-nav a { position: relative; padding: 11px 14px; color: var(--muted); font-weight: 700; border-radius: 999px; }
.primary-nav a:hover, .primary-nav a.is-active { color: var(--berry); background: var(--soft); }
.primary-nav a.is-active::after { content: ""; position: absolute; left: 50%; bottom: 4px; width: 18px; height: 3px; background: var(--gradient); border-radius: 999px; transform: translateX(-50%); pointer-events: none; }
.nav-actions { display: flex; justify-content: flex-end; gap: 10px; }
.button { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 20px; border: 0; border-radius: 999px; cursor: pointer; font-weight: 800; line-height: 1.2; white-space: nowrap; }
.button-small { min-height: 42px; padding: 10px 17px; }
.button-primary { color: #fff; background: var(--gradient); box-shadow: 0 12px 26px rgba(217, 76, 131, .2); }
.button-primary:hover { color: #fff; transform: translateY(-1px); }
.button-ghost { color: var(--berry); background: #fff; border: 1px solid var(--border); }
.button-soft { color: var(--deep-purple); background: var(--lilac); }
.text-link { color: var(--berry); font-weight: 800; }
.text-link::after { content: " →"; }
.mobile-nav { display: none; }

main { min-height: 60vh; }
.section { padding: 84px 0; position: relative; }
.section-tight { padding: 60px 0; }
.section-soft { background: var(--soft); }
.section-lilac { background: var(--lilac); }
.section-white { background: #fff; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.eyebrow { display: inline-block; margin-bottom: 10px; color: var(--berry); font-weight: 850; letter-spacing: .08em; font-size: .82rem; }
h1, h2, h3 { color: var(--title); line-height: 1.25; letter-spacing: -.025em; }
h1 { font-size: clamp(2.45rem, 6vw, 5.4rem); margin-bottom: 22px; }
h2 { font-size: clamp(1.85rem, 3.5vw, 3.2rem); margin-bottom: 14px; }
h3 { font-size: 1.16rem; margin-bottom: 10px; }
.lead { font-size: 1.08rem; color: var(--muted); }
.muted { color: var(--muted); }
.pill-list { display: flex; flex-wrap: wrap; gap: 9px; margin: 18px 0; }
.pill { display: inline-flex; align-items: center; min-height: 34px; padding: 6px 12px; border-radius: 999px; background: var(--soft); color: var(--berry); font-size: .86rem; font-weight: 750; }
.card { background: #fff; border: 1px solid var(--border); border-radius: 24px; box-shadow: var(--shadow); }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }

.hero { padding: 66px 0 80px; overflow: hidden; }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; filter: blur(4px); pointer-events: none; }
.hero::before { width: 440px; height: 440px; background: rgba(255, 142, 172, .14); right: -120px; top: 50px; }
.hero::after { width: 260px; height: 260px; background: rgba(140, 118, 232, .11); left: -100px; bottom: -70px; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.12fr .72fr .72fr; align-items: center; gap: 34px; }
.hero-copy .brand-kicker { display: inline-flex; gap: 8px; align-items: center; padding: 7px 13px; background: #fff; border: 1px solid var(--border); border-radius: 999px; color: var(--berry); font-weight: 800; margin-bottom: 18px; }
.hero-copy p { max-width: 660px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 28px; }
.phone-visual { position: relative; width: min(100%, 330px); aspect-ratio: .57; margin-inline: auto; padding: 14px; background: #2f242a; border-radius: 46px; box-shadow: 0 32px 70px rgba(76, 48, 66, .2); transform: rotate(2deg); }
.phone-visual::before { content: ""; position: absolute; z-index: 3; top: 10px; left: 50%; width: 34%; height: 22px; background: #2f242a; border-radius: 0 0 15px 15px; transform: translateX(-50%); pointer-events: none; }
.phone-screen { height: 100%; overflow: hidden; border-radius: 34px; background: linear-gradient(160deg, #fff 0 22%, #fff0f6 22% 56%, #f7f3ff 56%); padding: 34px 16px 18px; }
.phone-top { display: flex; justify-content: space-between; align-items: center; font-size: .72rem; font-weight: 800; color: var(--title); }
.phone-story { margin-top: 18px; aspect-ratio: 1.15; border-radius: 22px; background: linear-gradient(145deg, rgba(255, 93, 158, .78), rgba(140, 118, 232, .74)); position: relative; overflow: hidden; }
.phone-story::before, .phone-story::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.35); pointer-events: none; }
.phone-story::before { width: 170px; height: 170px; top: -50px; right: -45px; }
.phone-story::after { width: 100px; height: 100px; bottom: -24px; left: -20px; }
.phone-lines { display: grid; gap: 11px; margin-top: 16px; }
.phone-line { height: 54px; border-radius: 16px; background: rgba(255,255,255,.88); box-shadow: 0 8px 18px rgba(76,48,66,.06); }
.hero-side { display: grid; gap: 20px; }
.hero-mini { padding: 26px; min-height: 220px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; }
.hero-mini::before { content: ""; position: absolute; width: 110px; height: 110px; border-radius: 28px; top: -35px; right: -20px; transform: rotate(22deg); background: rgba(255, 93, 158, .1); pointer-events: none; }
.hero-mini:nth-child(2)::before { background: rgba(140, 118, 232, .13); }

.topic-scroller { display: grid; grid-template-columns: repeat(8, minmax(150px, 1fr)); gap: 14px; overflow-x: auto; padding-bottom: 12px; scrollbar-width: thin; }
.topic-chip { min-width: 150px; padding: 18px; background: #fff; border: 1px solid var(--border); border-radius: 20px; }
.topic-chip strong { display: block; color: var(--title); margin-bottom: 6px; }
.topic-chip span { display: block; min-height: 48px; color: var(--muted); font-size: .9rem; }

.magazine-grid { display: grid; grid-template-columns: 1.35fr repeat(2, minmax(0, .8fr)); grid-template-rows: repeat(2, minmax(240px, auto)); gap: 20px; }
.story-card { padding: 26px; min-height: 240px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; }
.story-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(145deg, rgba(255,240,246,.94), rgba(247,243,255,.92)); pointer-events: none; }
.story-card:nth-child(2)::before { background: linear-gradient(145deg, #f6edf4, #fff); }
.story-card:nth-child(3)::before { background: linear-gradient(145deg, #f7f3ff, #fff); }
.story-card:nth-child(4)::before { background: linear-gradient(145deg, #fff6f8, #fff0f6); }
.story-card:nth-child(5)::before { background: linear-gradient(145deg, #f2f7ff, #fff); }
.story-card > * { position: relative; z-index: 1; }
.story-card.featured { grid-row: 1 / span 2; min-height: 500px; }
.story-card.featured::after { content: ""; position: absolute; width: 230px; height: 230px; right: -60px; top: -40px; background: var(--gradient); opacity: .22; border-radius: 50%; pointer-events: none; }
.story-card p { color: var(--muted); }

.circle-card, .service-card, .feedback-card, .guide-card { padding: 26px; }
.circle-card { display: flex; flex-direction: column; min-height: 280px; }
.circle-card .text-link { margin-top: auto; }
.icon-bubble { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 16px; color: #fff; background: var(--gradient); font-weight: 900; }
.city-timeline { display: grid; grid-template-columns: repeat(6, minmax(220px, 1fr)); gap: 0; overflow-x: auto; padding-bottom: 12px; }
.city-item { position: relative; min-width: 220px; padding: 34px 24px 24px; border-top: 2px solid rgba(255,93,158,.25); }
.city-item::before { content: ""; position: absolute; top: -7px; left: 24px; width: 12px; height: 12px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 6px var(--soft); pointer-events: none; }
.city-item small { color: var(--berry); font-weight: 800; }
.discussion-list { display: grid; gap: 14px; counter-reset: topics; }
.discussion-item { display: grid; grid-template-columns: 60px 1fr auto; align-items: center; gap: 20px; padding: 22px 24px; background: #fff; border: 1px solid var(--border); border-radius: 20px; }
.discussion-item::before { counter-increment: topics; content: "0" counter(topics); font-size: 1.45rem; font-weight: 900; color: var(--coral); }
.discussion-item p { margin: 0; color: var(--muted); }

.diary-wrap { display: grid; grid-template-columns: 1fr .85fr; gap: 38px; align-items: center; }
.diary-visual { min-height: 470px; padding: 34px; background: linear-gradient(155deg, #fff 0 30%, #fff0f6 30% 66%, #f7f3ff 66%); border-radius: 32px; box-shadow: var(--strong-shadow); }
.diary-note { padding: 22px; background: rgba(255,255,255,.9); border-radius: 20px; box-shadow: var(--shadow); transform: rotate(-1.2deg); }
.diary-note + .diary-note { margin-top: 18px; transform: rotate(1.4deg); }
.app-showcase { display: grid; grid-template-columns: .75fr 1.25fr; gap: 44px; align-items: center; padding: 50px; border-radius: 34px; background: linear-gradient(145deg, #fff0f6, #f7f3ff); }
.compact-phone { max-width: 300px; margin: auto; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 26px; }
.service-card { background: rgba(255,255,255,.78); }
.advice-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.advice-card { padding: 24px; border-radius: 22px; background: #fff; border: 1px solid var(--border); }
.safety-split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.safety-panel { padding: 34px; border-radius: 28px; }
.safety-panel:first-child { background: var(--soft); }
.safety-panel:last-child { background: var(--lilac); }
.check-list { display: grid; gap: 10px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 26px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--pink); font-weight: 900; }
.feedback-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feedback-card { position: relative; }
.feedback-card::before { content: "“"; display: block; color: var(--coral); font-size: 3rem; line-height: .8; font-family: Georgia, serif; }
.faq-list { display: grid; gap: 12px; }
details { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 0 22px; }
summary { min-height: 60px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; color: var(--title); font-weight: 800; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 1.35rem; color: var(--pink); }
details[open] summary::after { content: "−"; }
details p { padding: 0 0 20px; color: var(--muted); }
.brand-story { display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: center; }
.brand-art { min-height: 350px; border-radius: 30px; background: linear-gradient(145deg, rgba(255,93,158,.75), rgba(140,118,232,.72)); position: relative; overflow: hidden; }
.brand-art::before, .brand-art::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.27); pointer-events: none; }
.brand-art::before { width: 260px; height: 260px; top: -80px; right: -50px; }
.brand-art::after { width: 170px; height: 170px; left: -35px; bottom: -55px; }

.page-hero { padding: 78px 0 58px; background: linear-gradient(155deg, #fff8fb, #fff0f6 58%, #f7f3ff); border-bottom: 1px solid var(--border); }
.page-hero-grid { display: grid; grid-template-columns: 1.15fr .65fr; gap: 44px; align-items: center; }
.page-hero h1 { font-size: clamp(2.35rem, 5.5vw, 4.8rem); }
.page-hero-art { min-height: 280px; border-radius: 30px; background: var(--gradient); opacity: .84; position: relative; overflow: hidden; box-shadow: var(--strong-shadow); }
.page-hero-art::before { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,.3); top: -70px; right: -50px; pointer-events: none; }
.page-hero-art::after { content: ""; position: absolute; width: 120px; height: 120px; border-radius: 32px; background: rgba(255,255,255,.25); bottom: 28px; left: 38px; transform: rotate(18deg); pointer-events: none; }
.content-index { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.content-index a { padding: 8px 13px; border-radius: 999px; background: rgba(255,255,255,.82); border: 1px solid var(--border); color: var(--berry); font-weight: 750; }
.article-stack { display: grid; gap: 22px; }
.article-card { display: grid; grid-template-columns: 170px 1fr; gap: 26px; padding: 30px; }
.article-card:nth-child(even) { grid-template-columns: 1fr 170px; }
.article-card:nth-child(even) .article-number { order: 2; }
.article-number { min-height: 160px; display: grid; place-items: center; border-radius: 22px; background: linear-gradient(145deg, var(--soft), var(--lilac)); color: var(--coral); font-size: 3rem; font-weight: 900; }
.steps { counter-reset: steps; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { counter-increment: steps; padding: 24px; background: #fff; border: 1px solid var(--border); border-radius: 22px; }
.step::before { content: counter(steps); width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 15px; border-radius: 50%; color: #fff; background: var(--gradient); font-weight: 900; }
.notice-box { padding: 28px; border-left: 5px solid var(--pink); border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
.related-links { display: flex; flex-wrap: wrap; gap: 12px; }
.related-links a { min-height: 44px; display: inline-flex; align-items: center; padding: 9px 15px; border-radius: 999px; background: #fff; border: 1px solid var(--border); color: var(--berry); font-weight: 750; }
.closing-cta { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; padding: 32px; background: var(--gradient); color: #fff; border-radius: 26px; box-shadow: var(--strong-shadow); }
.closing-cta h2, .closing-cta p { color: #fff; }
.closing-cta p { margin-bottom: 0; }
.closing-cta .button { background: #fff; color: var(--berry); }

.site-footer { padding: 62px 0 0; background: var(--footer); color: var(--footer-text); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 34px; }
.footer-grid h2 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-grid nav { display: flex; flex-direction: column; gap: 8px; }
.footer-grid a { color: rgba(255,234,242,.8); }
.footer-grid a:hover { color: #fff; }
.footer-brand p { color: rgba(255,234,242,.72); max-width: 320px; }
.brand-footer { color: #fff; margin-bottom: 16px; }
.footer-bottom { margin-top: 44px; padding: 24px 0 calc(24px + env(safe-area-inset-bottom)); border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 28px; color: rgba(255,234,242,.65); font-size: .88rem; }
.footer-bottom p { margin: 0; }

.menu-overlay { position: fixed; inset: 0; z-index: 1090; background: rgba(50, 38, 45, .34); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .2s ease, visibility .2s ease; }
.menu-overlay.is-visible { opacity: 1; visibility: visible; pointer-events: auto; }
.desktop-channel-panel { position: fixed; z-index: 1100; top: 106px; left: 0; right: 0; padding: 24px 0 30px; background: rgba(255,255,255,.98); border-bottom: 1px solid var(--border); box-shadow: var(--strong-shadow); transform: translateY(-120%); visibility: hidden; pointer-events: none; transition: transform .24s ease, visibility .24s ease; }
.desktop-channel-panel.is-open { transform: translateY(0); visibility: visible; pointer-events: auto; }
.panel-heading { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.panel-heading h2 { font-size: 1.7rem; margin: 0; }
.panel-close, .mobile-panel-heading button { min-height: 44px; padding: 8px 14px; border: 1px solid var(--border); border-radius: 999px; background: #fff; color: var(--berry); cursor: pointer; }
.channel-groups { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.channel-groups nav { min-width: 0; }
.channel-groups h3 { font-size: .92rem; color: var(--muted); }
.channel-groups a { display: block; padding: 10px 12px; border-radius: 14px; }
.channel-groups a:hover { background: var(--soft); }
.channel-groups strong, .channel-groups span { display: block; }
.channel-groups span { color: var(--muted); font-size: .82rem; }
.mobile-channel-panel, .mobile-bottom-nav { display: none; }

@media (max-width: 1020px) {
    .desktop-nav { grid-template-columns: minmax(160px, .8fr) auto minmax(200px, .8fr); gap: 12px; }
    .primary-nav a { padding-inline: 10px; }
    .nav-actions .button { padding-inline: 13px; }
    .hero-grid { grid-template-columns: 1fr .75fr; }
    .hero-side { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
    .hero-mini { min-height: 170px; }
    .magazine-grid { grid-template-columns: 1.2fr 1fr; }
    .story-card.featured { grid-row: 1 / span 2; }
    .magazine-grid .story-card:nth-child(4), .magazine-grid .story-card:nth-child(5) { grid-column: auto; }
    .grid-3, .feedback-grid { grid-template-columns: repeat(2, 1fr); }
    .grid-4, .service-grid, .advice-grid, .steps { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
}

@media (max-width: 780px) {
    .container { width: min(100% - 32px, var(--container)); }
    .notice-links a:first-child { display: none; }
    .desktop-nav { display: none; }
    .mobile-nav { height: 62px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 10px; }
    .mobile-menu-button, .mobile-experience { min-height: 44px; display: inline-flex; align-items: center; border: 0; background: transparent; color: var(--berry); font-weight: 800; }
    .mobile-menu-button { justify-self: start; cursor: pointer; padding: 0; }
    .mobile-experience { justify-self: end; }
    .mobile-brand { color: var(--title); font-weight: 900; white-space: nowrap; }
    .mobile-brand img { max-height: 40px; width: auto; }
    .section { padding: 62px 0; }
    .section-tight { padding: 48px 0; }
    .hero { padding-top: 42px; }
    .hero-grid, .page-hero-grid, .diary-wrap, .app-showcase, .brand-story { grid-template-columns: 1fr; }
    .hero-copy { text-align: left; }
    .phone-visual { width: min(72vw, 320px); }
    .hero-side { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; }
    .hero-mini { min-width: 78vw; scroll-snap-align: start; }
    .topic-scroller { grid-template-columns: repeat(8, 160px); }
    .magazine-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .story-card.featured { grid-row: auto; min-height: 380px; }
    .grid-2, .grid-3, .grid-4, .feedback-grid, .safety-split { grid-template-columns: 1fr; }
    .service-grid, .advice-grid, .steps { grid-template-columns: 1fr 1fr; }
    .discussion-item { grid-template-columns: 42px 1fr; }
    .discussion-item .text-link { grid-column: 2; }
    .app-showcase { padding: 30px 22px; }
    .page-hero { padding-top: 54px; }
    .page-hero-art { min-height: 220px; }
    .article-card, .article-card:nth-child(even) { grid-template-columns: 1fr; }
    .article-card:nth-child(even) .article-number { order: 0; }
    .article-number { min-height: 110px; }
    .closing-cta { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; }
    .desktop-channel-panel { display: none; }
    .mobile-channel-panel { display: block; position: fixed; z-index: 1110; left: 0; right: 0; bottom: 0; max-height: 85vh; padding: 10px 16px calc(18px + env(safe-area-inset-bottom)); background: #fff; border-radius: 26px 26px 0 0; box-shadow: 0 -20px 60px rgba(50,38,45,.18); transform: translateY(105%); visibility: hidden; pointer-events: none; transition: transform .25s ease, visibility .25s ease; }
    .mobile-channel-panel.is-open { transform: translateY(0); visibility: visible; pointer-events: auto; }
    .sheet-handle { width: 46px; height: 5px; margin: 2px auto 10px; border-radius: 999px; background: #e6dbe1; }
    .mobile-panel-heading { display: flex; justify-content: space-between; align-items: center; padding-bottom: 12px; }
    .mobile-channel-links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; max-height: calc(85vh - 85px); overflow-y: auto; overscroll-behavior: contain; padding-bottom: 12px; }
    .mobile-channel-links a { min-height: 48px; display: flex; align-items: center; padding: 10px 14px; background: var(--soft); border-radius: 14px; font-weight: 750; }
    .mobile-bottom-nav { position: fixed; z-index: 900; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: repeat(5, 1fr); padding: 7px max(8px, env(safe-area-inset-left)) calc(7px + env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-right)); background: rgba(255,255,255,.96); border-top: 1px solid var(--border); box-shadow: 0 -8px 24px rgba(76,48,66,.08); backdrop-filter: blur(16px); }
    .mobile-bottom-nav a { min-height: 52px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px; border-radius: 14px; color: var(--muted); font-size: .75rem; font-weight: 750; }
    .mobile-bottom-nav a span { font-size: 1.1rem; line-height: 1; }
    .mobile-bottom-nav a.is-active { color: var(--berry); background: var(--soft); }
    .site-footer { padding-bottom: 74px; }
}

@media (max-width: 520px) {
    h1 { font-size: 2.55rem; }
    .hero-actions { align-items: stretch; }
    .hero-actions .button { width: 100%; }
    .service-grid, .advice-grid, .steps { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
    .mobile-channel-links { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
