/* ============================================================
   Mascot Page - 「天翔える」キャラクター紹介
   第78回水戸一高・附属中学校学苑祭「天翔る」

   デザイン方針:
   - コンセプトページと同じタイポ(Zen Old Mincho / Shippori Mincho
     / Noto Sans JP)、section_label のナンバリング、薄い縦罫の
     divider、Reveal-on-scroll を踏襲し、サイト全体との一貫性を確保
   - 一方でカラーは公式マスコットの「若葉緑 / 山吹橙 / 生成 / 浅葱」を
     使い、明るく親しみのあるキャラクターのアイデンティティを表現
   ============================================================ */

/* ===== ローカル変数 ===== */
.mascot_main {
    /* 公式マスコットカラー */
    --m-green: #9ed27a;
    --m-green-deep: #6cb74f;
    --m-orange: #f0a04a;
    --m-orange-deep: #d97f2a;
    --m-cream: #fff7e6;
    --m-cream-deep: #f6e8c8;
    --m-teal: #4ec0b0;
    --m-ink: #1a2a1c;        /* 文字色：濃緑系の墨 */
    --m-ink-soft: rgba(26, 42, 28, 0.7);
    --m-ink-muted: rgba(26, 42, 28, 0.5);
    --m-bg: #fbf5e4;
    --m-bg-2: #eef5d8;
}

body {
    background-color: #fbf5e4;
    color: #1a2a1c;
    overflow-x: hidden;
}

/* ===== 共通 Section スタイル ===== */
.mascot_main {
    width: 100%;
    position: relative;
}

.mascot_section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* ===== Reveal アニメーション (コンセプトと統一) ===== */
.mascot_reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.mascot_reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Section ラベル (コンセプトと統一) ===== */
.mascot_section_label {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--m-ink-muted);
    margin-bottom: 16px;
}
.mascot_section_label_num {
    font-weight: 500;
    color: var(--m-orange-deep);
    margin-right: 6px;
}

/* ============================================================
   Section 1: Hero
   ============================================================ */
.mascot_hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 80px;
}

.mascot_hero_bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.mascot_hero_sky {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 10%, rgba(255, 255, 255, 0.6), transparent 50%),
        radial-gradient(ellipse at 80% 90%, rgba(78, 192, 176, 0.18), transparent 55%),
        linear-gradient(180deg, #d6efe2 0%, #f0f7da 45%, #fbf5e4 100%);
}

.mascot_hero_glow {
    position: absolute;
    left: 50%;
    bottom: -40%;
    width: 90%;
    max-width: 700px;
    aspect-ratio: 1 / 1;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(240, 160, 74, 0.18) 0%, transparent 60%);
    pointer-events: none;
}

/* Decorative drifting clouds */
.mascot_hero_clouds {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.mascot_hero_cloud {
    position: absolute;
    left: -200px;
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    filter: blur(2px);
    animation: mascotCloudDrift linear infinite;
    will-change: transform;
}
@keyframes mascotCloudDrift {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(100vw + 400px)); }
}

.mascot_hero_content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.mascot_hero_text {
    width: 100%;
    max-width: 560px;
    position: relative;
}

.mascot_hero_title {
    font-family: "Zen Old Mincho", serif;
    font-weight: 900;
    font-size: clamp(36px, 9vw, 84px);
    color: var(--m-ink);
    line-height: 1.15;
    letter-spacing: 0.06em;
    margin: 4px 0 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.mascot_hero_kanji {
    text-shadow: 0 4px 30px rgba(108, 183, 79, 0.18);
}
.mascot_hero_reading {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: clamp(12px, 2.4vw, 15px);
    letter-spacing: 0.45em;
    color: var(--m-ink-muted);
    text-transform: none;
}

.mascot_hero_lead {
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
    font-size: clamp(16px, 3.4vw, 22px);
    color: var(--m-orange-deep);
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}

.mascot_hero_desc {
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-size: clamp(13px, 2vw, 15px);
    color: var(--m-ink-soft);
    letter-spacing: 0.08em;
    line-height: 1.9;
}

.mascot_hero_scroll {
    margin: 36px auto 0;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.mascot_hero_scroll_text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--m-ink-muted);
    text-transform: uppercase;
}
.mascot_hero_scroll_line {
    display: block;
    width: 1px;
    height: 32px;
    background: rgba(26, 42, 28, 0.15);
    position: relative;
    overflow: hidden;
}
.mascot_hero_scroll_line::after {
    content: "";
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--m-orange);
    animation: mascotScrollDown 1.8s ease infinite;
}
@keyframes mascotScrollDown {
    0%   { bottom: -100%; }
    50%  { bottom: 0; }
    100% { bottom: 100%; }
}

/* Hero visual: character with concentric ring decorations */
.mascot_hero_visual {
    position: relative;
    width: clamp(220px, 65vw, 460px);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mascot_hero_visual_ring {
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    border: 1px dashed rgba(108, 183, 79, 0.45);
    animation: mascotRingSpin 50s linear infinite;
}
.mascot_hero_visual_ring2 {
    inset: 18%;
    border-style: solid;
    border-color: rgba(240, 160, 74, 0.25);
    animation-duration: 75s;
    animation-direction: reverse;
}
@keyframes mascotRingSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
.mascot_hero_img {
    position: relative;
    z-index: 2;
    width: 88%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(26, 42, 28, 0.18));
    animation: mascotFloat 6s ease-in-out infinite;
    will-change: transform;
}
@keyframes mascotFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

/* ============================================================
   Section 2: Name Origin
   ============================================================ */
.mascot_origin {
    background:
        radial-gradient(ellipse at 80% 0%, rgba(78, 192, 176, 0.12), transparent 50%),
        linear-gradient(180deg, #fbf5e4 0%, #f6e8c8 100%);
    padding: 100px 24px;
}

.mascot_origin_content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.mascot_origin_title {
    font-family: "Zen Old Mincho", serif;
    font-weight: 900;
    font-size: clamp(26px, 5vw, 40px);
    color: var(--m-ink);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.mascot_origin_divider,
.mascot_profile_divider,
.mascot_variants_divider {
    width: 1px;
    height: 56px;
    background: linear-gradient(180deg, transparent, rgba(217, 127, 42, 0.5), transparent);
    margin: 28px auto 40px;
}

/* Equation block: テーマ × モチーフ = マスコット */
.mascot_origin_equation {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: center;
    justify-items: center;
    padding: 32px clamp(20px, 4vw, 40px);
    margin: 8px auto 40px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.6) 100%);
    border: 1px solid rgba(26, 42, 28, 0.1);
    border-radius: 24px;
    box-shadow:
        0 18px 40px rgba(26, 42, 28, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    max-width: 720px;
}

.mascot_origin_term {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
}
.mascot_origin_term_kanji {
    font-family: "Zen Old Mincho", serif;
    font-weight: 900;
    font-size: clamp(20px, 4vw, 30px);
    color: var(--m-ink);
    letter-spacing: 0.08em;
}
.mascot_origin_term_reading {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--m-ink-muted);
}
.mascot_origin_term_note {
    margin-top: 6px;
    display: inline-block;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--m-orange-deep);
    background: rgba(240, 160, 74, 0.15);
    border: 1px solid rgba(240, 160, 74, 0.4);
    border-radius: 999px;
    padding: 4px 10px;
}

.mascot_origin_term_result .mascot_origin_term_kanji {
    color: var(--m-green-deep);
    text-shadow: 0 4px 14px rgba(108, 183, 79, 0.25);
}
.mascot_origin_term_result .mascot_origin_term_note {
    color: var(--m-green-deep);
    background: rgba(108, 183, 79, 0.12);
    border-color: rgba(108, 183, 79, 0.4);
}

.mascot_origin_op {
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
    font-size: clamp(18px, 3vw, 24px);
    color: var(--m-ink-muted);
}
.mascot_origin_op_eq {
    color: var(--m-orange-deep);
}

.mascot_origin_body {
    max-width: 640px;
    margin: 0 auto;
}
.mascot_origin_text {
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-size: clamp(14px, 2.2vw, 16.5px);
    color: var(--m-ink-soft);
    line-height: 2.1;
    margin-bottom: 18px;
}
.mascot_origin_text strong {
    color: var(--m-ink);
    font-weight: 700;
}
.mascot_origin_text em {
    font-style: normal;
    color: var(--m-orange-deep);
    font-weight: 700;
    padding: 0 2px;
}

/* ============================================================
   Section 3: Profile
   ============================================================ */
.mascot_profile {
    background:
        radial-gradient(ellipse at 20% 0%, rgba(108, 183, 79, 0.12), transparent 50%),
        linear-gradient(180deg, #f6e8c8 0%, #eef5d8 100%);
    padding: 100px 24px;
}

.mascot_profile_content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.mascot_profile_title {
    font-family: "Zen Old Mincho", serif;
    font-weight: 900;
    font-size: clamp(26px, 5vw, 40px);
    color: var(--m-ink);
    letter-spacing: 0.1em;
}

.mascot_profile_card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    padding: clamp(28px, 5vw, 48px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    border: 1px solid rgba(26, 42, 28, 0.1);
    border-radius: 28px;
    box-shadow:
        0 24px 60px rgba(26, 42, 28, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: left;
    position: relative;
    overflow: hidden;
}

/* Corner ornaments (greetings.css と同じ意匠) */
.mascot_profile_card::before,
.mascot_profile_card::after {
    content: "";
    position: absolute;
    width: 32px;
    height: 32px;
    border-color: rgba(217, 127, 42, 0.55);
    border-style: solid;
    pointer-events: none;
}
.mascot_profile_card::before {
    top: 16px;
    left: 16px;
    border-width: 1.5px 0 0 1.5px;
    border-top-left-radius: 6px;
}
.mascot_profile_card::after {
    bottom: 16px;
    right: 16px;
    border-width: 0 1.5px 1.5px 0;
    border-bottom-right-radius: 6px;
}

.mascot_profile_figure {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.mascot_profile_figure::before {
    content: "";
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(158, 210, 122, 0.25) 0%, transparent 70%);
    z-index: 0;
}
.mascot_profile_img {
    position: relative;
    z-index: 1;
    width: clamp(180px, 50vw, 320px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(26, 42, 28, 0.15));
}

.mascot_profile_list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
}
.mascot_profile_row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 14px;
    align-items: baseline;
    padding: 14px 4px;
    border-bottom: 1px dashed rgba(26, 42, 28, 0.18);
}
.mascot_profile_row:last-child {
    border-bottom: none;
}
.mascot_profile_dt {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.24em;
    color: var(--m-orange-deep);
    text-transform: uppercase;
    margin: 0;
}
.mascot_profile_dd {
    font-family: "Shippori Mincho", serif;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 500;
    color: var(--m-ink);
    margin: 0;
    letter-spacing: 0.04em;
    line-height: 1.7;
}
.mascot_profile_ruby {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 11px;
    color: var(--m-ink-muted);
    letter-spacing: 0.2em;
    margin-left: 4px;
}

.mascot_profile_swatches {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    vertical-align: middle;
    margin-right: 10px;
}
.mascot_profile_swatch {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid rgba(26, 42, 28, 0.18);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.5);
    display: inline-block;
}
.mascot_profile_swatch_text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
    color: var(--m-ink-soft);
    letter-spacing: 0.1em;
    vertical-align: middle;
}

/* ============================================================
   Section 4: Variants
   ============================================================ */
.mascot_variants {
    background:
        radial-gradient(ellipse at 70% 100%, rgba(240, 160, 74, 0.14), transparent 55%),
        linear-gradient(180deg, #eef5d8 0%, #fbf5e4 100%);
    padding: 100px 24px;
}

.mascot_variants_content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.mascot_variants_title {
    font-family: "Zen Old Mincho", serif;
    font-weight: 900;
    font-size: clamp(26px, 5vw, 40px);
    color: var(--m-ink);
    letter-spacing: 0.1em;
}

.mascot_variants_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 8px;
}

.mascot_variant_card {
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.72) 100%);
    border: 1px solid rgba(26, 42, 28, 0.1);
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 16px 40px rgba(26, 42, 28, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.mascot_variant_card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 22px 50px rgba(26, 42, 28, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.mascot_variant_figure {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background:
        radial-gradient(circle at 50% 60%, rgba(158, 210, 122, 0.28) 0%, transparent 60%),
        linear-gradient(180deg, #fff7e6 0%, #f6e8c8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.mascot_variant_img {
    width: 70%;
    max-width: 280px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 18px rgba(26, 42, 28, 0.15));
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.mascot_variant_card:hover .mascot_variant_img {
    transform: scale(1.04);
}

.mascot_variant_body {
    padding: 22px clamp(20px, 4vw, 32px) 28px;
    text-align: left;
}
.mascot_variant_tag {
    display: inline-block;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--m-cream);
    background: var(--m-ink);
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 12px;
}
.mascot_variant_name {
    font-family: "Zen Old Mincho", serif;
    font-weight: 800;
    font-size: clamp(18px, 3vw, 22px);
    color: var(--m-ink);
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}
.mascot_variant_text {
    font-family: "Shippori Mincho", serif;
    font-size: clamp(13px, 1.8vw, 15px);
    color: var(--m-ink-soft);
    line-height: 1.95;
    letter-spacing: 0.04em;
}

/* ============================================================
   Section 5: Closing CTA
   ============================================================ */
.mascot_closing {
    padding: 110px 24px 120px;
    background: linear-gradient(180deg, #fbf5e4 0%, #f6e8c8 60%, #efd190 100%);
    text-align: center;
}
.mascot_closing_bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.mascot_closing_glow {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 80%;
    max-width: 700px;
    aspect-ratio: 1 / 1;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(240, 160, 74, 0.2) 0%, transparent 60%);
}

.mascot_closing_content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.mascot_closing_title {
    font-family: "Zen Old Mincho", serif;
    font-weight: 900;
    font-size: clamp(24px, 5vw, 42px);
    color: var(--m-ink);
    letter-spacing: 0.12em;
    line-height: 1.4;
    margin-bottom: 14px;
}
.mascot_closing_sub {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: clamp(13px, 2.4vw, 16px);
    letter-spacing: 0.22em;
    color: var(--m-ink-soft);
    margin-bottom: 40px;
}

.mascot_closing_actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.mascot_closing_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 999px;
    border: 1.5px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    min-width: 240px;
    justify-content: center;
}
.mascot_closing_btn span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.mascot_closing_btn_primary {
    background: var(--m-ink);
    color: var(--m-cream);
    box-shadow: 0 12px 28px rgba(26, 42, 28, 0.25);
}
.mascot_closing_btn_primary:hover {
    background: #2a3f2c;
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(26, 42, 28, 0.32);
}
.mascot_closing_btn_primary:hover span {
    transform: translateX(3px);
}

.mascot_closing_btn_ghost {
    color: var(--m-ink);
    border-color: rgba(26, 42, 28, 0.35);
    background: transparent;
}
.mascot_closing_btn_ghost:hover {
    background: rgba(26, 42, 28, 0.06);
    border-color: var(--m-ink);
    transform: translateY(-2px);
}
.mascot_closing_btn_ghost:hover span {
    transform: translateX(-3px);
}

/* Focus styles (accessibility) */
.mascot_closing_btn:focus-visible {
    outline: 2px solid var(--m-orange-deep);
    outline-offset: 3px;
}

/* ============================================================
   Responsive
   ============================================================ */
/* Tablet and up */
@media screen and (min-width: 768px) {
    .mascot_hero_content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        gap: 48px;
    }
    .mascot_hero_text {
        flex: 1 1 50%;
    }
    .mascot_hero_title {
        align-items: flex-start;
    }
    .mascot_hero_scroll {
        margin-left: 0;
        align-self: flex-start;
    }
    .mascot_hero_visual {
        flex: 0 0 auto;
        width: clamp(280px, 40vw, 460px);
    }

    .mascot_profile_card {
        grid-template-columns: minmax(220px, 1fr) 1.4fr;
        gap: 48px;
    }

    .mascot_variants_grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .mascot_closing_actions {
        flex-direction: row;
        justify-content: center;
        gap: 18px;
    }
}

/* PC */
@media screen and (min-width: 1024px) {
    .mascot_hero {
        padding: 160px 40px 100px;
    }
    .mascot_origin,
    .mascot_profile,
    .mascot_variants {
        padding: 130px 40px;
    }
    .mascot_closing {
        padding: 140px 40px 150px;
    }

    .mascot_origin_equation {
        grid-template-columns: 1fr auto 1fr auto 1fr;
        padding: 36px 40px;
    }

    .mascot_section_label {
        font-size: 12px;
        margin-bottom: 20px;
    }
}

/* Small mobile */
@media screen and (max-width: 400px) {
    .mascot_hero {
        padding: 120px 18px 60px;
    }
    .mascot_origin,
    .mascot_profile,
    .mascot_variants {
        padding: 80px 18px;
    }
    .mascot_closing {
        padding: 90px 18px 100px;
    }

    .mascot_profile_row {
        grid-template-columns: 84px 1fr;
        gap: 10px;
        padding: 12px 2px;
    }
    .mascot_profile_dt {
        font-size: 10px;
        letter-spacing: 0.18em;
    }
    .mascot_profile_swatches {
        display: flex;
        margin-bottom: 4px;
    }

    .mascot_origin_equation {
        padding: 24px 16px;
        gap: 14px;
    }

    .mascot_closing_btn {
        min-width: 0;
        width: 100%;
        font-size: 14px;
        padding: 13px 22px;
    }

    .mascot_section_label {
        font-size: 10px;
        letter-spacing: 0.25em;
        margin-bottom: 12px;
    }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .mascot_reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .mascot_hero_img,
    .mascot_hero_visual_ring,
    .mascot_hero_scroll_line::after,
    .mascot_hero_cloud {
        animation: none !important;
    }
}
