:root {
    --bg: #FFF7FB;
    --surface: #FFFFFF;
    --surface-pink: #FFF0F6;
    --surface-purple: #F6F1FF;
    --title: #332631;
    --text: #514451;
    --muted: #807080;
    --pink: #FF629F;
    --pink-deep: #E94D8E;
    --peach: #FF9BBC;
    --purple: #936BFF;
    --border: rgba(255, 98, 159, 0.16);
    --footer: #30232D;
    --footer-text: #FFEAF3;
    --shadow-sm: 0 10px 30px rgba(90, 53, 76, 0.08);
    --shadow-md: 0 22px 60px rgba(90, 53, 76, 0.13);
    --gradient: linear-gradient(135deg, #FF9BBC 0%, #FF629F 50%, #936BFF 100%);
    --max: 1220px;
    --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 8% 6%, rgba(255,155,188,.18), transparent 28%),
        radial-gradient(circle at 92% 16%, rgba(147,107,255,.12), transparent 26%),
        var(--bg);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.75;
    text-rendering: optimizeLegibility;
}
body.drawer-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; pointer-events: auto; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: rgba(255,98,159,.22); }

.skip-link {
    position: fixed;
    left: 16px;
    top: 10px;
    z-index: 2000;
    transform: translateY(-140%);
    padding: 10px 16px;
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 800;
    min-height: var(--header-h);
    border-bottom: 1px solid rgba(255,98,159,.1);
    background: rgba(255,247,251,.88);
    backdrop-filter: blur(18px);
    box-shadow: 0 6px 22px rgba(65,39,55,.05);
}
.header-inner {
    width: min(calc(100% - 40px), 1260px);
    min-height: var(--header-h);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(150px, 220px) 1fr auto;
    align-items: center;
    gap: 22px;
}
.brand-link, .drawer-brand, .footer-brand {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    width: fit-content;
}
.brand-logo-img { width: auto; max-width: 168px; max-height: 48px; object-fit: contain; }
.brand-logo-text {
    font-weight: 900;
    color: var(--title);
    font-size: 23px;
    letter-spacing: -.6px;
}
.brand-logo-text::first-letter { color: var(--pink-deep); }
.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 1.4vw, 22px);
    white-space: nowrap;
}
.desktop-nav a {
    position: relative;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0 6px;
    color: #5e4c5a;
    font-size: 15px;
    font-weight: 700;
}
.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: 4px;
    height: 3px;
    border-radius: 99px;
    transform: scaleX(0);
    background: var(--gradient);
    transition: transform .2s ease;
    pointer-events: none;
}
.desktop-nav a:hover, .desktop-nav a:focus-visible, .desktop-nav a.is-current { color: var(--pink-deep); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after, .desktop-nav a.is-current::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.header-cta, .btn-primary, .btn-secondary {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    white-space: nowrap;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.header-cta, .btn-primary {
    color: #fff;
    background: var(--gradient);
    box-shadow: 0 10px 26px rgba(233,77,142,.22);
}
.header-cta:hover, .btn-primary:hover { transform: translateY(-2px); filter: saturate(1.05); box-shadow: 0 14px 30px rgba(233,77,142,.28); }
.btn-secondary {
    color: var(--pink-deep);
    background: rgba(255,255,255,.82);
    border: 1px solid var(--border);
}
.btn-secondary:hover { transform: translateY(-2px); background: #fff; box-shadow: var(--shadow-sm); }
.menu-toggle, .drawer-close {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 20px rgba(90,53,76,.1);
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.menu-toggle span { width: 19px; height: 2px; border-radius: 2px; background: var(--title); pointer-events: none; }
.mobile-menu-toggle { display: none; }

.drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 1090;
    border: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: rgba(39,26,35,.4);
    backdrop-filter: blur(5px);
    transition: opacity .25s ease, visibility .25s ease;
}
.site-drawer {
    position: fixed;
    z-index: 1100;
    top: 0;
    right: 0;
    width: min(420px, 88vw);
    height: 100dvh;
    padding: 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #fffafc;
    box-shadow: -24px 0 60px rgba(46,30,40,.18);
    transform: translateX(105%);
    visibility: hidden;
    pointer-events: none;
    transition: transform .28s ease, visibility .28s ease;
}
.drawer-open .drawer-overlay { opacity: 1; visibility: visible; pointer-events: auto; }
.drawer-open .site-drawer { transform: translateX(0); visibility: visible; pointer-events: auto; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.drawer-close { font-size: 30px; line-height: 1; }
.drawer-intro { margin: 20px 0; color: var(--muted); font-size: 14px; }
.drawer-nav { display: grid; gap: 6px; }
.drawer-nav a {
    min-height: 48px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 14px;
    color: #4a3946;
    font-weight: 700;
}
.drawer-nav a:hover, .drawer-nav a:focus-visible, .drawer-nav a.is-current { color: var(--pink-deep); background: var(--surface-pink); }
.drawer-note { margin-top: 22px; padding: 18px; border-radius: 20px; background: var(--surface-purple); }
.drawer-note strong { color: var(--title); }
.drawer-note p { margin: 7px 0 0; font-size: 14px; color: var(--muted); }

main { min-height: 60vh; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: clamp(66px, 8vw, 112px) 0; position: relative; }
.section-soft { background: rgba(255,240,246,.62); border-block: 1px solid rgba(255,98,159,.08); }
.section-purple { background: rgba(246,241,255,.66); border-block: 1px solid rgba(147,107,255,.09); }
.section-white { background: rgba(255,255,255,.72); }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--pink-deep);
    font-weight: 900;
    font-size: 13px;
    letter-spacing: .12em;
}
.eyebrow::before { content: ""; width: 24px; height: 3px; border-radius: 99px; background: var(--gradient); pointer-events: none; }
h1, h2, h3 { margin-top: 0; color: var(--title); line-height: 1.25; letter-spacing: -.03em; }
h1 { font-size: clamp(38px, 6.2vw, 76px); margin-bottom: 22px; }
h2 { font-size: clamp(28px, 3.5vw, 46px); margin-bottom: 16px; }
h3 { font-size: clamp(20px, 2vw, 26px); margin-bottom: 10px; }
p { margin: 0 0 16px; }
.lead { font-size: clamp(18px, 2vw, 22px); line-height: 1.85; color: #5f4f5b; }
.muted { color: var(--muted); }
.text-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pink-deep);
    font-weight: 800;
}
.text-link span { transition: transform .18s ease; }
.text-link:hover span { transform: translateX(4px); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 9px; }
.tag { display: inline-flex; align-items: center; min-height: 34px; padding: 0 13px; border-radius: 999px; color: #76506a; background: rgba(255,255,255,.78); border: 1px solid var(--border); font-size: 13px; font-weight: 700; }

.hero { padding: clamp(56px, 7vw, 96px) 0 70px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); align-items: center; gap: clamp(34px, 6vw, 88px); }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 strong { color: var(--pink-deep); }
.hero-copy .lead { max-width: 820px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.hero-points span { min-height: 38px; display: inline-flex; align-items: center; gap: 8px; padding: 0 14px; border-radius: 999px; background: rgba(255,255,255,.78); box-shadow: 0 8px 24px rgba(90,53,76,.07); font-weight: 700; font-size: 14px; }
.hero-points span::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gradient); pointer-events: none; }
.hero-art {
    position: relative;
    min-height: 420px;
    display: grid;
    place-items: center;
}
.hero-art::before, .hero-art::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.hero-art::before { width: 340px; height: 340px; background: linear-gradient(145deg, rgba(255,155,188,.34), rgba(147,107,255,.18)); box-shadow: inset 0 0 0 1px rgba(255,255,255,.7); }
.hero-art::after { width: 150px; height: 150px; top: 22px; right: 8%; background: rgba(255,255,255,.75); box-shadow: var(--shadow-md); }
.hero-note-card { position: relative; z-index: 2; width: min(330px, 92%); padding: 28px; border-radius: 34px; background: rgba(255,255,255,.92); box-shadow: var(--shadow-md); transform: rotate(-2deg); }
.hero-note-card .mini-line { height: 9px; border-radius: 99px; background: #f5d8e4; margin-bottom: 12px; }
.hero-note-card .mini-line:nth-child(2) { width: 76%; background: #e7ddff; }
.hero-note-card .mini-line:nth-child(3) { width: 58%; }
.hero-note-card .mini-photo { aspect-ratio: 4 / 3; border-radius: 22px; margin: 20px 0; background: linear-gradient(145deg, #ffe1ec, #eee5ff); display: grid; place-items: center; color: var(--pink-deep); font-weight: 900; }
.hero-note-card small { color: var(--muted); }
.media-frame { margin: 0; position: relative; z-index: 3; width: 100%; max-width: 520px; }
.media-frame img { width: 100%; max-height: 560px; object-fit: contain; border-radius: 28px; box-shadow: var(--shadow-md); }

.page-hero { padding: clamp(54px, 7vw, 88px) 0 58px; }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .62fr); gap: clamp(28px, 6vw, 72px); align-items: center; }
.page-hero h1 { font-size: clamp(38px, 5.4vw, 66px); }
.page-hero .lead { max-width: 760px; }
.page-hero-panel { padding: 28px; border-radius: 30px; background: rgba(255,255,255,.88); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.page-hero-panel strong { display: block; color: var(--title); font-size: 22px; margin-bottom: 10px; }
.page-hero-panel ul { margin: 0; padding-left: 20px; }
.page-hero-panel li + li { margin-top: 7px; }

.feature-grid, .card-grid, .quick-grid, .topic-grid, .feedback-grid, .faq-summary-grid { display: grid; gap: 20px; }
.feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.quick-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.topic-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feedback-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.faq-summary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card, .feature-card, .quick-card, .topic-card, .feedback-card, .faq-summary, .info-strip, .step-card {
    position: relative;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.9);
    box-shadow: var(--shadow-sm);
}
.card, .feature-card, .topic-card, .feedback-card, .faq-summary, .step-card { padding: 26px; border-radius: 24px; }
.feature-card { min-height: 100%; }
.feature-card .icon, .card-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 16px;
    color: var(--pink-deep);
    background: linear-gradient(145deg, #fff0f6, #f3edff);
    font-weight: 900;
}
.quick-card { padding: 22px; border-radius: 20px; min-height: 200px; display: flex; flex-direction: column; }
.quick-card p { color: var(--muted); font-size: 14px; flex: 1; }
.quick-card .text-link { margin-top: auto; }
.card p:last-child, .feature-card p:last-child, .topic-card p:last-child, .feedback-card p:last-child { margin-bottom: 0; }
.card.tint-pink { background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(255,240,246,.92)); }
.card.tint-purple { background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(246,241,255,.94)); }
.card:hover, .feature-card:hover, .quick-card:hover, .topic-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card, .feature-card, .quick-card, .topic-card { transition: transform .2s ease, box-shadow .2s ease; }

.masonry-lite { display: grid; grid-template-columns: 1.15fr .85fr .9fr; gap: 20px; align-items: stretch; }
.inspiration-card { min-height: 220px; padding: 28px; border-radius: 28px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.inspiration-card.tall { min-height: 340px; }
.inspiration-card.warm { background: linear-gradient(145deg, #fff, #fff0f6); }
.inspiration-card.cool { background: linear-gradient(145deg, #fff, #f6f1ff); }
.inspiration-card .tag-row { margin-top: auto; padding-top: 18px; }

.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(28px, 5vw, 66px); align-items: center; }
.split.reverse > :first-child { order: 2; }
.copy-block { max-width: 700px; }
.copy-block p { font-size: 16px; }
.panel-stack { display: grid; gap: 16px; }
.info-strip { padding: 18px 20px; border-radius: 18px; display: flex; gap: 16px; align-items: flex-start; }
.info-strip .num { flex: 0 0 34px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; color: #fff; background: var(--gradient); font-weight: 900; }
.info-strip h3 { margin-bottom: 4px; font-size: 19px; }
.info-strip p { margin: 0; color: var(--muted); font-size: 14px; }

.timeline { position: relative; display: grid; gap: 18px; }
.timeline::before { content: ""; position: absolute; left: 20px; top: 22px; bottom: 22px; width: 2px; background: linear-gradient(var(--pink), var(--purple)); opacity: .35; pointer-events: none; }
.timeline-item { position: relative; padding: 22px 24px 22px 66px; border-radius: 22px; background: rgba(255,255,255,.88); border: 1px solid var(--border); }
.timeline-item::before { content: ""; position: absolute; left: 12px; top: 27px; width: 18px; height: 18px; border-radius: 50%; background: var(--gradient); box-shadow: 0 0 0 7px #fff7fb; pointer-events: none; }
.timeline-item h3 { margin-bottom: 6px; }
.timeline-item p { margin: 0; color: var(--muted); }

.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; counter-reset: step; }
.step-card { counter-increment: step; }
.step-card::before { content: counter(step, decimal-leading-zero); display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; margin-bottom: 16px; border-radius: 14px; color: #fff; background: var(--gradient); font-weight: 900; }

.notice { padding: 24px 26px; border-radius: 24px; border: 1px solid rgba(147,107,255,.16); background: rgba(246,241,255,.84); }
.notice strong { color: var(--title); }
.notice p:last-child { margin-bottom: 0; }
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--gradient); font-size: 12px; font-weight: 900; }

.faq-list { display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--border); border-radius: 20px; background: rgba(255,255,255,.9); box-shadow: 0 8px 26px rgba(90,53,76,.06); overflow: clip; }
.faq-item summary { min-height: 58px; padding: 16px 54px 16px 20px; cursor: pointer; font-weight: 800; color: var(--title); list-style: none; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--surface-pink); color: var(--pink-deep); font-size: 20px; pointer-events: none; }
.faq-item[open] summary::after { content: "−"; }
.faq-answer { padding: 0 20px 20px; color: #665560; }
.faq-answer p { margin: 0; }

.related-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.related-links a { min-height: 46px; display: inline-flex; align-items: center; gap: 10px; padding: 0 17px; border-radius: 999px; color: var(--pink-deep); background: #fff; border: 1px solid var(--border); font-weight: 800; }
.related-links a:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }

.cta-band { padding: 34px; border-radius: 32px; color: #fff; background: var(--gradient); box-shadow: 0 24px 60px rgba(233,77,142,.22); display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cta-band h2 { color: #fff; margin-bottom: 9px; }
.cta-band p { margin: 0; color: rgba(255,255,255,.9); max-width: 760px; }
.cta-band .btn-secondary { flex: 0 0 auto; color: var(--pink-deep); background: #fff; border: 0; }

.table-wrap { overflow-x: auto; border-radius: 22px; border: 1px solid var(--border); background: #fff; }
.info-table { width: 100%; min-width: 680px; border-collapse: collapse; }
.info-table th, .info-table td { padding: 17px 18px; text-align: left; border-bottom: 1px solid rgba(255,98,159,.11); vertical-align: top; }
.info-table th { color: var(--title); background: var(--surface-pink); }
.info-table tr:last-child td { border-bottom: 0; }

.site-footer { color: var(--footer-text); background: var(--footer); padding: 68px 0 24px; }
.footer-inner { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.footer-brand-col { max-width: 480px; margin-bottom: 42px; }
.footer-brand-col p { color: rgba(255,234,243,.72); }
.footer-brand .brand-logo-text { color: #fff; }
.footer-brand .brand-logo-img { filter: brightness(0) invert(1); }
.footer-links { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; padding-bottom: 38px; }
.footer-links section { display: grid; align-content: start; gap: 9px; }
.footer-links h2 { color: #fff; font-size: 16px; margin-bottom: 7px; }
.footer-links a { width: fit-content; min-height: 34px; display: inline-flex; align-items: center; color: rgba(255,234,243,.72); }
.footer-links a:hover { color: #fff; }
.footer-reminder { padding: 20px 22px; border-radius: 18px; background: rgba(255,255,255,.06); color: rgba(255,234,243,.76); }
.footer-reminder p { margin: 0; }
.footer-bottom { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 16px; color: rgba(255,234,243,.62); font-size: 14px; }
.footer-bottom a:hover { color: #fff; }
.mobile-bottom-nav { display: none; }

@media (max-width: 1080px) {
    .header-inner { grid-template-columns: 170px 1fr auto; gap: 12px; }
    .desktop-nav { gap: 8px; }
    .desktop-nav a { font-size: 14px; }
    .quick-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .feature-grid, .topic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
    :root { --header-h: 68px; }
    .header-inner { width: min(calc(100% - 24px), 1260px); grid-template-columns: minmax(76px, 1fr) auto minmax(76px, 1fr); gap: 8px; }
    .desktop-nav, .desktop-menu-toggle { display: none; }
    .mobile-menu-toggle { display: inline-flex; justify-self: start; }
    .brand-link { justify-self: center; }
    .header-actions { justify-self: end; }
    .header-actions .header-cta { padding-inline: 16px; min-height: 44px; }
    .hero-grid, .page-hero-grid, .split { grid-template-columns: 1fr; }
    .hero-copy, .page-hero-grid > :first-child { order: 1; }
    .hero-art, .page-hero-grid > :last-child { order: 2; }
    .hero-art { min-height: 330px; }
    .split.reverse > :first-child { order: initial; }
    .card-grid.three, .feedback-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .masonry-lite { grid-template-columns: 1fr 1fr; }
    .masonry-lite .inspiration-card:first-child { grid-column: 1 / -1; }
    .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
    .container, .footer-inner { width: min(calc(100% - 28px), var(--max)); }
    .section { padding: 62px 0; }
    .hero { padding-top: 42px; }
    .brand-logo-text { font-size: 20px; }
    .brand-logo-img { max-width: 132px; max-height: 40px; }
    .header-actions .header-cta { font-size: 14px; padding-inline: 13px; }
    h1 { font-size: 42px; }
    .page-hero h1 { font-size: 40px; }
    .lead { font-size: 17px; }
    .hero-art { min-height: 290px; }
    .hero-art::before { width: 250px; height: 250px; }
    .hero-note-card { padding: 22px; border-radius: 26px; }
    .feature-grid, .card-grid.three, .card-grid.two, .quick-grid, .topic-grid, .feedback-grid, .faq-summary-grid, .steps, .masonry-lite { grid-template-columns: 1fr; }
    .masonry-lite .inspiration-card:first-child { grid-column: auto; }
    .quick-card { min-height: auto; }
    .cta-band { padding: 27px; flex-direction: column; align-items: flex-start; }
    .cta-band .btn-secondary { width: 100%; }
    .footer-links { grid-template-columns: 1fr 1fr; gap: 26px 18px; }
    .footer-bottom { flex-direction: column; }
    .mobile-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 780;
        min-height: 68px;
        padding: 7px 10px calc(7px + env(safe-area-inset-bottom));
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 5px;
        border-top: 1px solid rgba(255,98,159,.14);
        background: rgba(255,255,255,.94);
        backdrop-filter: blur(18px);
        box-shadow: 0 -10px 30px rgba(90,53,76,.08);
    }
    .mobile-bottom-nav a { min-height: 54px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px; border-radius: 14px; color: var(--muted); font-size: 12px; font-weight: 800; }
    .mobile-bottom-nav a span { font-size: 19px; line-height: 1; }
    .mobile-bottom-nav a.is-current { color: var(--pink-deep); background: var(--surface-pink); }
    .site-footer { padding-bottom: 34px; }
}

@media (max-width: 390px) {
    .header-inner { width: calc(100% - 16px); }
    .header-actions .header-cta { padding-inline: 11px; font-size: 13px; }
    .brand-logo-text { font-size: 18px; }
    .menu-toggle { width: 44px; height: 44px; }
    .footer-links { grid-template-columns: 1fr; }
}

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

:focus-visible { outline: 3px solid rgba(147,107,255,.42); outline-offset: 3px; }
