/* ==========================================================================
   koomimi.com — frutiger aero × Korean 꾸미기 cuteness
   Palette: #f5d5e8 #e8d5f5 #d5f0e8 #ff7eb3 #ffd700 #ffffff #3a2840
   ========================================================================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --pink: #f5d5e8;
    --lavender: #e8d5f5;
    --mint: #d5f0e8;
    --hot: #ff7eb3;
    --gold: #ffd700;
    --white: #ffffff;
    --plum: #3a2840;
    --radius: 16px;
    --radius-lg: 24px;
}

html, body { min-height: 100%; }

body {
    background: linear-gradient(180deg, #f5d5e8 0%, #e8d5f5 35%, #d5f0e8 70%, #f5d5e8 100%);
    background-attachment: fixed;
    color: var(--plum);
    font-family: 'Noto Sans KR', 'Quicksand', sans-serif;
    font-weight: 400;
    line-height: 1.75;
    font-size: 0.95rem;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Decorative background patterns */
.heart-pattern,
.star-pattern {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
}

.heart-pattern::before,
.heart-pattern::after,
.star-pattern::before,
.star-pattern::after {
    content: '';
    position: absolute;
    inset: 0;
    background-repeat: repeat;
}

.heart-pattern {
    background-image:
        radial-gradient(circle at 12% 18%, rgba(255, 126, 179, 0.08) 0 6px, transparent 7px),
        radial-gradient(circle at 16% 18%, rgba(255, 126, 179, 0.08) 0 6px, transparent 7px),
        radial-gradient(circle at 14% 22%, rgba(255, 126, 179, 0.08) 0 7px, transparent 8px),
        radial-gradient(circle at 78% 62%, rgba(255, 126, 179, 0.08) 0 6px, transparent 7px),
        radial-gradient(circle at 82% 62%, rgba(255, 126, 179, 0.08) 0 6px, transparent 7px),
        radial-gradient(circle at 80% 66%, rgba(255, 126, 179, 0.08) 0 7px, transparent 8px),
        radial-gradient(circle at 42% 88%, rgba(255, 126, 179, 0.08) 0 6px, transparent 7px),
        radial-gradient(circle at 46% 88%, rgba(255, 126, 179, 0.08) 0 6px, transparent 7px),
        radial-gradient(circle at 44% 92%, rgba(255, 126, 179, 0.08) 0 7px, transparent 8px);
    background-size: 100% 100%;
}

.star-pattern {
    background-image:
        radial-gradient(circle, rgba(255, 215, 0, 0.16) 1.2px, transparent 1.6px),
        radial-gradient(circle, rgba(255, 215, 0, 0.10) 1px, transparent 1.4px);
    background-size: 90px 90px, 130px 130px;
    background-position: 0 0, 45px 65px;
    opacity: 0.7;
}

/* =============================================================
   HERO — The Vanity Mirror
   ============================================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 1.5rem 3rem;
    background: linear-gradient(135deg, #e8d5f5 0%, #f5d5e8 100%);
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 22%, rgba(255, 255, 255, 0.45), transparent 30%),
        radial-gradient(circle at 86% 82%, rgba(213, 240, 232, 0.55), transparent 35%);
    pointer-events: none;
}

.bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -60px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: inset -2px -3px 6px rgba(255, 126, 179, 0.18), inset 2px 2px 5px rgba(255, 255, 255, 0.7);
    animation-name: bubbleFloat;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.b1 { left: 8%;  width: 28px; height: 28px; animation-duration: 9s;  animation-delay: 0s; }
.b2 { left: 22%; width: 18px; height: 18px; animation-duration: 11s; animation-delay: 1.4s; }
.b3 { left: 38%; width: 22px; height: 22px; animation-duration: 8s;  animation-delay: 0.8s; }
.b4 { left: 56%; width: 30px; height: 30px; animation-duration: 12s; animation-delay: 2.2s; }
.b5 { left: 70%; width: 14px; height: 14px; animation-duration: 7s;  animation-delay: 3s; }
.b6 { left: 84%; width: 24px; height: 24px; animation-duration: 10s; animation-delay: 1s; }
.b7 { left: 92%; width: 18px; height: 18px; animation-duration: 9.5s; animation-delay: 4s; }

@keyframes bubbleFloat {
    0%   { transform: translateY(0) translateX(0) scale(0.9); opacity: 0; }
    10%  { opacity: 1; }
    50%  { transform: translateY(-55vh) translateX(10px) scale(1); }
    90%  { opacity: 0.7; }
    100% { transform: translateY(-110vh) translateX(-12px) scale(1.1); opacity: 0; }
}

.mirror {
    position: relative;
    width: min(60vw, 600px);
    height: clamp(360px, 50vh, 480px);
    border-radius: var(--radius-lg);
    border: 6px solid var(--white);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.65), rgba(245, 213, 232, 0.55) 50%, rgba(232, 213, 245, 0.65));
    box-shadow:
        0 24px 60px rgba(58, 40, 64, 0.18),
        0 8px 20px rgba(255, 126, 179, 0.18),
        inset 0 0 40px rgba(255, 255, 255, 0.5);
    overflow: hidden;
    z-index: 2;
    animation: mirrorBob 7s ease-in-out infinite;
}

@keyframes mirrorBob {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-8px) rotate(-0.4deg); }
}

.mirror-inner {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
}

.mirror-tag {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--hot);
    letter-spacing: 0.18em;
    text-transform: lowercase;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 126, 179, 0.35);
    margin-bottom: 1.25rem;
}

.hero-title {
    font-family: 'Baloo 2', 'Noto Sans KR', cursive;
    font-size: clamp(3rem, 9vw, 5.5rem);
    font-weight: 800;
    color: var(--plum);
    line-height: 1.05;
    letter-spacing: -0.01em;
    text-shadow: 0 3px 0 rgba(255, 255, 255, 0.7), 0 6px 14px rgba(255, 126, 179, 0.25);
}

.hero-domain {
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--hot);
    margin-top: 0.5rem;
    letter-spacing: 0.22em;
    text-transform: lowercase;
}

.hero-sub {
    font-family: 'Baloo 2', 'Noto Sans KR', cursive;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    font-weight: 500;
    color: var(--plum);
    margin-top: 0.85rem;
    opacity: 0.85;
}

.mirror-stars { position: absolute; inset: 0; pointer-events: none; }
.ms {
    position: absolute;
    width: 18px;
    height: 18px;
    background: var(--gold);
    clip-path: polygon(50% 0%, 61% 35%, 100% 50%, 61% 65%, 50% 100%, 39% 65%, 0% 50%, 39% 35%);
    filter: drop-shadow(0 2px 3px rgba(255, 215, 0, 0.5));
    animation: twinkle 2.6s ease-in-out infinite;
}
.ms1 { top: 14%; left: 12%; animation-delay: 0s; }
.ms2 { top: 22%; right: 14%; width: 12px; height: 12px; animation-delay: 0.7s; }
.ms3 { bottom: 18%; left: 22%; width: 14px; height: 14px; animation-delay: 1.4s; }

@keyframes twinkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.95; }
    50%      { transform: scale(0.6) rotate(45deg); opacity: 0.5; }
}

.mirror-gloss {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 55%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.12) 50%, transparent 100%);
    border-radius: var(--radius-lg) 0 90% 0;
    pointer-events: none;
    z-index: 4;
}

.hero-scroll {
    margin-top: 2.5rem;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--hot);
    letter-spacing: 0.18em;
    text-transform: lowercase;
    background: rgba(255, 255, 255, 0.6);
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    z-index: 2;
    animation: bobScroll 2.4s ease-in-out infinite;
}

@keyframes bobScroll {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(4px); }
}

/* =============================================================
   BENTO SECTION
   ============================================================= */

.bento-section {
    position: relative;
    z-index: 1;
    padding: 5rem 1.5rem 4rem;
    max-width: 1180px;
    margin: 0 auto;
}

.bento-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.5rem;
}

.eyebrow {
    display: inline-block;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--hot);
    letter-spacing: 0.22em;
    text-transform: lowercase;
    background: rgba(255, 255, 255, 0.65);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 126, 179, 0.3);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Baloo 2', 'Noto Sans KR', cursive;
    font-size: clamp(1.8rem, 4.5vw, 2.6rem);
    font-weight: 700;
    color: var(--plum);
    line-height: 1.15;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.5);
}

.section-desc {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 400;
    margin-top: 0.85rem;
    color: var(--plum);
    opacity: 0.78;
    font-size: 1rem;
    line-height: 1.7;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.bento-cell {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    padding: 1.5rem;
    min-height: 200px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 8px 24px rgba(58, 40, 64, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(28px) scale(0.96);
}

.bento-cell.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s ease, box-shadow 0.35s ease;
}

.bento-cell:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 14px 32px rgba(255, 126, 179, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.span-2 { grid-column: span 2; }

.cell-pink     { background: linear-gradient(160deg, #fde4f1, #f5d5e8); }
.cell-lavender { background: linear-gradient(160deg, #f1e3fb, #e8d5f5); }
.cell-mint     { background: linear-gradient(160deg, #e3faef, #d5f0e8); }

.cell-gloss {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.18) 35%, transparent 70%);
    border-radius: var(--radius) 0 80% 0;
    pointer-events: none;
}

.cell-label {
    display: inline-block;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--hot);
    letter-spacing: 0.18em;
    text-transform: lowercase;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.85rem;
    position: relative;
    z-index: 2;
}

.cell-title {
    position: relative;
    z-index: 2;
    font-family: 'Baloo 2', 'Noto Sans KR', cursive;
    font-size: clamp(1.2rem, 2.4vw, 1.55rem);
    font-weight: 700;
    color: var(--plum);
    line-height: 1.2;
    margin-bottom: 0.55rem;
    letter-spacing: -0.01em;
}

.cell-title .kr {
    display: inline-block;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 500;
    font-size: 0.85em;
    color: var(--hot);
    margin-top: 0.2em;
}

.cell-text {
    position: relative;
    z-index: 2;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--plum);
    opacity: 0.78;
    max-width: 36ch;
}

/* Cell decorations */
.cell-deco {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.85;
}

.deco-bow {
    bottom: -10px;
    right: -10px;
    width: 110px;
    height: 110px;
    background:
        radial-gradient(circle at 25% 50%, var(--hot) 22px, transparent 23px),
        radial-gradient(circle at 75% 50%, var(--hot) 22px, transparent 23px),
        radial-gradient(circle at 50% 50%, var(--gold) 8px, transparent 9px);
    opacity: 0.55;
    transform: rotate(-15deg);
}

.deco-star {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    background: var(--gold);
    clip-path: polygon(50% 0%, 61% 35%, 100% 50%, 61% 65%, 50% 100%, 39% 65%, 0% 50%, 39% 35%);
    filter: drop-shadow(0 4px 6px rgba(255, 215, 0, 0.5));
    animation: twinkle 3.2s ease-in-out infinite;
}

.deco-heart {
    bottom: 18px;
    right: 18px;
    width: 40px;
    height: 36px;
    background:
        radial-gradient(circle at 30% 35%, var(--hot) 12px, transparent 13px),
        radial-gradient(circle at 70% 35%, var(--hot) 12px, transparent 13px),
        linear-gradient(180deg, var(--hot) 30%, transparent 30%);
    -webkit-mask: radial-gradient(circle at 50% 75%, black 1%, black 8%, transparent 9%) 0 0/100% 100%;
    transform: rotate(0deg);
}

.deco-heart::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, var(--hot) 38%, transparent 39%),
        radial-gradient(circle at 70% 30%, var(--hot) 38%, transparent 39%);
}
.deco-heart::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) rotate(45deg);
    width: 26px;
    height: 26px;
    background: var(--hot);
    border-radius: 0 0 6px 0;
}

.deco-cloud {
    bottom: 14px;
    right: 16px;
    width: 90px;
    height: 44px;
    background:
        radial-gradient(circle at 20% 70%, rgba(255, 255, 255, 0.85) 22px, transparent 23px),
        radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.85) 26px, transparent 27px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.85) 22px, transparent 23px);
}

.deco-bubble {
    bottom: -20px;
    right: -20px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.85), rgba(213, 240, 232, 0.6) 60%, rgba(232, 213, 245, 0.4));
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: inset -4px -8px 20px rgba(255, 126, 179, 0.18);
}

/* =============================================================
   PALETTE SECTION
   ============================================================= */

.palette-section {
    position: relative;
    z-index: 1;
    padding: 4rem 1.5rem;
    max-width: 1180px;
    margin: 0 auto;
}

.swatch-row {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 12px;
    margin-top: 2rem;
}

.swatch {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius);
    padding: 1rem 0.75rem 0.85rem;
    text-align: center;
    box-shadow: 0 6px 18px rgba(58, 40, 64, 0.08);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.swatch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 35%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent);
    border-radius: var(--radius) 0 50% 0;
    pointer-events: none;
}

.swatch:hover { transform: translateY(-5px) rotate(-1deg); }

.swatch-chip {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--swatch);
    border-radius: 12px;
    border: 2px solid var(--white);
    box-shadow: 0 4px 10px rgba(58, 40, 64, 0.12), inset 0 -4px 10px rgba(255, 255, 255, 0.3);
    margin-bottom: 0.7rem;
    position: relative;
}

.swatch-chip::after {
    content: '';
    position: absolute;
    top: 8%;
    left: 8%;
    width: 38%;
    height: 32%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), transparent 70%);
    border-radius: 8px 0 60% 0;
}

.swatch-name {
    display: block;
    font-family: 'Baloo 2', 'Noto Sans KR', cursive;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--plum);
    line-height: 1.2;
}

.swatch-hex {
    display: block;
    font-family: 'Quicksand', monospace, sans-serif;
    font-size: 0.7rem;
    color: var(--hot);
    letter-spacing: 0.06em;
    margin-top: 0.2rem;
}

/* =============================================================
   RECIPE
   ============================================================= */

.recipe-section {
    position: relative;
    z-index: 1;
    padding: 4rem 1.5rem 5rem;
    max-width: 880px;
    margin: 0 auto;
}

.recipe-list {
    list-style: none;
    margin-top: 2rem;
    display: grid;
    gap: 16px;
}

.recipe-item {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 8px 22px rgba(58, 40, 64, 0.07);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.recipe-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 60%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), transparent 70%);
    border-radius: var(--radius) 0 60% 0;
    pointer-events: none;
}

.recipe-item:hover { transform: translateX(6px); }

.recipe-num {
    font-family: 'Baloo 2', sans-serif;
    font-weight: 800;
    font-size: 2.4rem;
    color: var(--hot);
    line-height: 1;
    text-shadow: 0 3px 0 rgba(255, 255, 255, 0.65);
}

.recipe-body h4 {
    font-family: 'Baloo 2', 'Noto Sans KR', cursive;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--plum);
    margin-bottom: 0.15rem;
}

.recipe-body p {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 0.92rem;
    color: var(--plum);
    opacity: 0.78;
    line-height: 1.6;
}

.recipe-emoji {
    font-size: 2rem;
    line-height: 1;
}

/* =============================================================
   FOOTER — Sticker Drawer
   ============================================================= */

.footer {
    position: relative;
    z-index: 1;
    padding: 4rem 1.5rem 5rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(245, 213, 232, 0) 0%, rgba(232, 213, 245, 0.65) 50%, rgba(213, 240, 232, 0.65) 100%);
    overflow: hidden;
}

.footer-stickers {
    position: relative;
    height: 80px;
    margin: 0 auto 1rem;
    max-width: 700px;
}

.sticker {
    position: absolute;
    display: block;
}

.s-star {
    width: 30px;
    height: 30px;
    background: var(--gold);
    clip-path: polygon(50% 0%, 61% 35%, 100% 50%, 61% 65%, 50% 100%, 39% 65%, 0% 50%, 39% 35%);
    filter: drop-shadow(0 3px 4px rgba(255, 215, 0, 0.5));
    top: 10px;
    left: 8%;
    animation: spinStar 6s linear infinite;
}
.s-star.alt {
    width: 22px;
    height: 22px;
    top: 36px;
    right: 12%;
    left: auto;
    animation-duration: 8s;
}

.s-heart {
    width: 26px;
    height: 24px;
    background: var(--hot);
    clip-path: path('M13,22 C13,22 0,14 0,7 C0,2 4,0 7,0 C9,0 11,1 13,4 C15,1 17,0 19,0 C22,0 26,2 26,7 C26,14 13,22 13,22 Z');
    top: 28px;
    left: 22%;
    filter: drop-shadow(0 3px 4px rgba(255, 126, 179, 0.4));
    animation: bobBob 3.4s ease-in-out infinite;
}
.s-heart.alt {
    top: 4px;
    right: 28%;
    left: auto;
    width: 22px;
    height: 20px;
    animation-duration: 4.6s;
}

.s-bubble {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.85), rgba(213, 240, 232, 0.6) 50%, rgba(232, 213, 245, 0.4));
    border: 1px solid rgba(255, 255, 255, 0.7);
    top: 20px;
    left: 48%;
    animation: bobBob 5s ease-in-out infinite;
}

.s-bow {
    width: 38px;
    height: 22px;
    background:
        radial-gradient(circle at 25% 50%, var(--hot) 10px, transparent 11px),
        radial-gradient(circle at 75% 50%, var(--hot) 10px, transparent 11px),
        radial-gradient(circle at 50% 50%, var(--gold) 4px, transparent 5px);
    top: 12px;
    right: 32%;
    transform: rotate(-8deg);
    animation: bobBob 4.2s ease-in-out infinite;
}

@keyframes spinStar {
    0%   { transform: rotate(0deg) scale(1); }
    50%  { transform: rotate(180deg) scale(0.85); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes bobBob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

.footer-text {
    font-family: 'Baloo 2', 'Noto Sans KR', cursive;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--plum);
    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.7);
}

.footer-sub {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    color: var(--hot);
    margin-top: 0.3rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.footer-meta {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.78rem;
    color: var(--plum);
    opacity: 0.55;
    margin-top: 1.4rem;
    letter-spacing: 0.08em;
}

/* =============================================================
   Sparkle (JS-injected) — gold 4-point star
   ============================================================= */

.sparkle {
    position: fixed;
    width: 14px;
    height: 14px;
    background: var(--gold);
    clip-path: polygon(50% 0%, 61% 35%, 100% 50%, 61% 65%, 50% 100%, 39% 65%, 0% 50%, 39% 35%);
    pointer-events: none;
    z-index: 9999;
    filter: drop-shadow(0 2px 5px rgba(255, 215, 0, 0.65));
    animation: sparkleOut 0.6s ease-out forwards;
}

@keyframes sparkleOut {
    0%   { transform: translate(-50%, -50%) scale(0) rotate(0deg);   opacity: 1; }
    50%  { transform: translate(-50%, -50%) scale(1.2) rotate(120deg); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(0.4) rotate(240deg); opacity: 0; }
}

/* =============================================================
   RESPONSIVE
   ============================================================= */

@media (max-width: 900px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .span-2 { grid-column: span 2; }
    .swatch-row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .mirror { width: min(85vw, 520px); }
}

@media (max-width: 600px) {
    .bento-grid { grid-template-columns: 1fr; }
    .span-2 { grid-column: span 1; }
    .swatch-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .mirror { width: 92vw; height: 60vh; }
    .recipe-item { grid-template-columns: auto 1fr; }
    .recipe-emoji { display: none; }
    .hero-scroll { display: none; }
}
