:root {
    --bg: #e4e5e0;
    --bg-dark: #c9cac5;
    --bg-light: #f2f3ee;
    --text: #1e2a24;
    --text-mid: #3a4a40;
    --text-muted: #6a7a6e;
    --accent: #2a7a6a;
    --accent-deep: #1b5c4f;
    --accent-warm: #c4713b;
    --accent-soft: #5aada0;
    --pine: #2e4a3e;
    --wood: #8b6e4e;
    --neu-dark: #c4c5c0;
    --neu-light: #fefff9;
    --font-body: 'LINE Seed JP', sans-serif;
    --font-heading: 'LINE Seed JP', sans-serif;
    --font-label: 'LINE Seed JP', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: #fff; }
a { color: var(--accent); text-decoration: none; }

/* ===== AMBIENT BLOBS ===== */
.blob-canvas {
    position: fixed; inset: 0;
    z-index: 0; pointer-events: none; overflow: hidden;
}
.blob {
    position: absolute; border-radius: 50%;
    filter: blur(110px); opacity: 0.22;
    animation: blobDrift 24s ease-in-out infinite alternate;
}
.blob--1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, #5aada0 0%, #2a7a6a 100%);
    top: -15%; left: -10%; animation-duration: 28s;
}
.blob--2 {
    width: 450px; height: 450px;
    background: radial-gradient(circle, #c4a06a 0%, #8b6e4e 100%);
    bottom: -10%; right: -8%; animation-duration: 22s; animation-delay: -6s;
}
.blob--3 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, #7bbfb5 0%, #2e6e60 100%);
    top: 40%; left: 50%; animation-duration: 30s; animation-delay: -14s;
}
@keyframes blobDrift {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(50px, -40px) scale(1.1); }
    100% { transform: translate(-30px, 30px) scale(0.95); }
}

/* ===== LIQUID GLASS (LIGHT) ===== */
.liquid-glass {
    background: linear-gradient(135deg, rgba(255,255,255,0.32) 0%, rgba(255,255,255,0.1) 100%);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 24px;
    box-shadow:
        0 8px 32px rgba(30, 42, 36, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.5),
        inset 0 -1px 0 rgba(255,255,255,0.1);
}

/* ===== LIQUID GLASS (NEUTRAL DARK) ===== */
.liquid-glass--neutral {
    background: linear-gradient(135deg, rgba(60,65,62,0.55) 0%, rgba(45,50,48,0.4) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255,255,255,0.1),
        inset 0 -1px 0 rgba(0,0,0,0.12);
}

/* ===== NEUMORPHIC (LIGHT) ===== */
.neu {
    background: var(--bg);
    border-radius: 20px;
    box-shadow: 8px 8px 18px var(--neu-dark), -8px -8px 18px var(--neu-light);
}
.neu--pressed {
    box-shadow: inset 4px 4px 10px var(--neu-dark), inset -4px -4px 10px var(--neu-light);
}

/* ===== HEADER (floating pill) ===== */
.site-header {
    position: fixed;
    top: 14px; left: 50%;
    transform: translateX(-50%);
    width: min(94vw, 1200px);
    z-index: 1000;
    padding: 12px 12px 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.15) 100%);
    backdrop-filter: blur(24px) saturate(190%);
    -webkit-backdrop-filter: blur(24px) saturate(190%);
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow:
        0 6px 28px rgba(30,42,36,0.08),
        inset 0 1px 0 rgba(255,255,255,0.55),
        inset 0 -1px 0 rgba(255,255,255,0.1);
}

.site-logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.03em;
    cursor: pointer;
    line-height: 1.1;
}
.site-logo small {
    font-family: var(--font-label);
    font-weight: 400;
    font-size: 0.55rem;
    color: var(--text-muted);
    display: block;
    margin-top: 1px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ===== HEADER CONTROLS ===== */
.header-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-btn {
    width: 42px; height: 42px;
    border-radius: 13px;
    border: none; cursor: pointer;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg);
    box-shadow: 3px 3px 8px var(--neu-dark), -3px -3px 8px var(--neu-light);
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: box-shadow 0.25s ease, color 0.2s ease;
}
.header-btn:active {
    box-shadow: inset 3px 3px 7px var(--neu-dark), inset -3px -3px 7px var(--neu-light);
}
.header-btn:hover { color: var(--accent); }
.header-btn:focus, .header-btn:focus-visible { outline: none !important; box-shadow: 3px 3px 8px var(--neu-dark), -3px -3px 8px var(--neu-light); }
.header-btn.active { color: var(--accent);
    box-shadow: inset 3px 3px 7px var(--neu-dark), inset -3px -3px 7px var(--neu-light);
}

/* ===== HEADER PAGE TITLE ===== */
.header-page-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 300;
    font-size: 1.24rem;
    opacity: 0.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 40%;
    pointer-events: none;
    letter-spacing: 0.02em;
}

/* ===== BURGER ===== */
.burger-btn {
    width: 48px; height: 48px;
    border-radius: 15px;
    border: none; cursor: pointer;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 5px;
    background: var(--bg);
    box-shadow: 4px 4px 10px var(--neu-dark), -4px -4px 10px var(--neu-light);
    transition: box-shadow 0.25s ease;
}
.burger-btn:active {
    box-shadow: inset 3px 3px 7px var(--neu-dark), inset -3px -3px 7px var(--neu-light);
}
.burger-btn:focus, .burger-btn:focus-visible { outline: none !important; box-shadow: 4px 4px 10px var(--neu-dark), -4px -4px 10px var(--neu-light); }
.burger-line {
    width: 20px; height: 2px;
    background: var(--text); border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.2s ease;
}
.burger-btn.active .burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.active .burger-line:nth-child(2) { opacity: 0; }
.burger-btn.active .burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MENU (neutral glass) ===== */
.menu-overlay {
    position: fixed; inset: 0; z-index: 1001;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.menu-overlay.open { opacity: 1; visibility: visible; }

.menu-backdrop {
    position: absolute; inset: 0;
    background: rgba(30, 35, 32, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: background 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
}
.menu-overlay.open .menu-backdrop {
    background: rgba(30, 35, 32, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.menu-panel {
    position: relative;
    width: min(420px, 88vw);
    padding: 28px 28px 32px;
    opacity: 0;
    transform: scale(0.96) translateY(10px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    color: #e8ebe9;
}
.menu-overlay.open .menu-panel { opacity: 1; transform: scale(1) translateY(0); }

.menu-close {
    width: 42px; height: 42px;
    border-radius: 13px; border: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-dark);
    box-shadow: 4px 4px 10px var(--neu-dark), -4px -4px 10px var(--neu-light);
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: box-shadow 0.2s ease, color 0.2s ease;
    margin-left: auto;
    margin-bottom: 20px;
}
.menu-close:active {
    box-shadow: inset 3px 3px 7px var(--neu-dark), inset -3px -3px 7px var(--neu-light);
}
.menu-close:hover { color: var(--accent); }

.menu-nav { list-style: none; }
.menu-nav a, .menu-nav a:hover, .menu-nav a:focus { text-decoration: none; }
.menu-nav > li + li { margin-top: 4px; }

.menu-nav > li > a,
.menu-nav > li > .menu-parent {
    display: flex; align-items: center;
    padding: 13px 16px;
    border-radius: 14px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #e8ebe9;
    cursor: pointer; user-select: none;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.menu-nav > li > a:hover,
.menu-nav > li > .menu-parent:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.15);
    color: #fff;
    text-decoration: none;
}
.menu-nav > li > a i,
.menu-nav > li > .menu-parent i:first-child {
    width: 32px; margin-right: 10px;
    text-align: center; font-size: 0.82rem; opacity: 0.4;
}
.menu-parent .chevron {
    margin-left: auto; font-size: 0.55rem;
    transition: transform 0.3s ease; opacity: 0.35;
}
.menu-parent.expanded .chevron { transform: rotate(90deg); }

.menu-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 10px 0;
}

.menu-sub {
    list-style: none; padding-left: 54px;
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.3s ease;
    opacity: 0;
}
.menu-sub.open { max-height: 150px; opacity: 1; }
.menu-sub li a {
    display: flex; align-items: center; gap: 8px;
    padding: 9px 14px; border-radius: 10px;
    font-size: 0.82rem; font-weight: 500;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s ease, background 0.2s ease;
}
.menu-sub li a:hover {
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.06);
    text-decoration: none;
}
.menu-sub li a i { font-size: 0.65rem; opacity: 0.3; }

/* ===== PAGES ===== */
.page-section {
    min-height: 80vh;
    position: relative; z-index: 1;
    padding-top: 101px;
}

/* ===== HOME HERO (wide horizontal layout) ===== */
.home-hero {
    max-width: 1060px;
    margin: 0 auto;
    padding: 30px 32px 20px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: center;
}

.hero-photo-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 10px 10px 28px var(--neu-dark), -10px -10px 28px var(--neu-light);
    aspect-ratio: 4/3;
}
.hero-photo-wrap img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-name {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.04em;
}

.hero-aka {
    font-family: var(--font-label);
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 36px;
    font-style: italic;
}

.social-row {
    display: flex; flex-wrap: wrap;
    gap: 16px;
}

.social-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: #fff;
    box-shadow: 6px 6px 14px var(--neu-dark), -6px -6px 14px var(--neu-light);
    transition: box-shadow 0.25s ease;
}
.social-icon:hover {
    text-decoration: none;
    color: #fff;
}
.social-icon:active {
    box-shadow: inset 3px 3px 8px rgba(0,0,0,0.2), inset -2px -2px 6px rgba(255,255,255,0.1);
}
.social-icon--yt  { background: linear-gradient(140deg, #f04040 0%, #c41818 100%); }
.social-icon--gh  { background: linear-gradient(140deg, #3a4a40 0%, #1a2a20 100%); }
.social-icon--tg  { background: linear-gradient(140deg, #2aabee 0%, #1c90cc 100%); }
.social-icon--vk  { background: linear-gradient(140deg, #4a80b4 0%, #34659a 100%); }
.social-icon--em  { background: linear-gradient(140deg, var(--accent) 0%, var(--accent-deep) 100%); }

/* ===== WALL ===== */
.wall-section { padding: 60px 20px 100px; }
.wall-label {
    font-family: var(--font-label);
    font-size: 0.7rem; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--text-muted);
    text-align: center; margin-bottom: 28px; opacity: 0.5;
}
.wall-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 26px; max-width: 920px; margin: 0 auto;
    align-items: start;
}
.wall-item {
    position: relative; display: block;
    border-radius: 12px; overflow: hidden;
    background: var(--bg);
    box-shadow: 10px 10px 24px var(--neu-dark), -10px -10px 24px var(--neu-light);
}
.wall-item::before {
    content: ''; position: absolute;
    top: -18px; left: 50%; transform: translateX(-50%);
    width: 2px; height: 22px;
    background: linear-gradient(to bottom, transparent 0%, var(--neu-dark) 100%);
    z-index: 3;
}
.wall-item .pin {
    position: absolute; top: 2px; left: 50%;
    transform: translateX(-50%);
    width: 14px; height: 14px; border-radius: 50%; z-index: 4;
    background: radial-gradient(circle at 38% 32%, var(--bg-light), var(--neu-dark));
    box-shadow: 0 2px 5px rgba(0,0,0,0.18);
}
.wall-item img {
    width: 100%; height: auto;
    display: block;
}

/* ===== BLOG LIST ===== */
.blog-header {
    text-align: center; padding: 30px 24px 50px;
}
.blog-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700; letter-spacing: -0.03em;
    margin-bottom: 8px;
}
.blog-header p {
    font-family: var(--font-label);
    font-size: 0.72rem; color: var(--text-muted);
    letter-spacing: 0.1em;
}

.blog-list {
    max-width: 960px; margin: 0 auto;
    padding: 0 20px 100px;
    display: flex; flex-direction: column; gap: 24px;
}

.blog-card {
    display: grid; grid-template-columns: 190px 1fr;
    border-radius: 22px; overflow: hidden;
    cursor: pointer; background: var(--bg);
    box-shadow: 7px 7px 16px var(--neu-dark), -7px -7px 16px var(--neu-light);
    transition: box-shadow 0.25s ease;
}
.blog-card:active {
    box-shadow: inset 4px 4px 10px var(--neu-dark), inset -4px -4px 10px var(--neu-light);
}
.blog-card__thumb { aspect-ratio: 1; overflow: hidden; }
.blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card__body {
    padding: 24px 28px;
    display: flex; flex-direction: column; justify-content: center;
}
.blog-card__date {
    font-family: var(--font-label);
    font-size: 0.68rem; color: var(--text-muted);
    letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 7px;
}
.blog-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem; font-weight: 600;
    line-height: 1.3; color: var(--text);
    margin-bottom: 8px; letter-spacing: -0.01em;
}
.blog-card__excerpt {
    font-size: 0.84rem; line-height: 1.6;
    color: var(--text-muted);
    display: -webkit-box; -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; overflow: hidden;
}

/* ===== BLOG POST ===== */
.post-container {
    max-width: 740px; margin: 0 auto;
    padding: 0 24px 100px;
}

.post-back {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 20px; border-radius: 14px;
    font-size: 0.82rem; font-weight: 500;
    color: var(--text-muted); margin-bottom: 36px;
    background: var(--bg);
    box-shadow: 4px 4px 10px var(--neu-dark), -4px -4px 10px var(--neu-light);
    transition: box-shadow 0.25s ease, color 0.2s ease;
    cursor: pointer;
}
.post-back:hover { color: var(--accent); }
.post-back:active {
    box-shadow: inset 3px 3px 7px var(--neu-dark), inset -3px -3px 7px var(--neu-light);
}

.post-meta {
    font-family: var(--font-label);
    font-size: 0.72rem; color: var(--text-muted);
    letter-spacing: 0.12em; text-transform: uppercase;
    margin-bottom: 14px;
}
.post-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4.5vw, 2.6rem);
    font-weight: 700; line-height: 1.15;
    margin-bottom: 30px; letter-spacing: -0.03em;
}
.post-hero-row {
    display: flex; align-items: flex-start; gap: 20px;
    margin-bottom: 24px;
}
.post-hero-row .post-meta { margin-bottom: 6px; }
.post-hero-row .post-meta i { margin-right: 4px; }
.post-hero-info {
    padding-top: 8px;
}
.post-hero-img {
    max-width: 280px; border-radius: 16px;
    display: block; flex-shrink: 0;
    box-shadow: 10px 10px 24px var(--neu-dark), -10px -10px 24px var(--neu-light);
}

.post-content { font-size: 1.02rem; line-height: 1.85; }
.post-content p { margin-bottom: 1.3em; }
.post-content h2 {
    font-family: var(--font-heading);
    font-size: 1.45rem; font-weight: 600;
    margin: 2em 0 0.7em; letter-spacing: -0.02em;
}
.post-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem; font-weight: 600;
    margin: 1.5em 0 0.5em;
}
.post-content blockquote {
    border-left: 3px solid var(--accent);
    padding: 14px 22px; margin: 1.4em 0;
    border-radius: 0 14px 14px 0;
    font-style: italic; color: var(--text-mid);
    background: var(--bg);
    box-shadow: inset 4px 4px 10px var(--neu-dark), inset -4px -4px 10px var(--neu-light);
}

/* All images inside post content (including CKEditor-inserted) — !important overrides inline styles */
.post-content img {
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    display: block;
    border-radius: 16px;
    margin: 1em auto;
    box-shadow: 5px 5px 12px var(--neu-dark), -5px -5px 12px var(--neu-light);
    cursor: pointer;
}

/* CKEditor wraps images in <figure class="image"> */
.post-content figure {
    margin: 1.2em auto;
    max-width: 100% !important;
    width: auto !important;
    text-align: center;
}
.post-content figure img {
    margin: 0 auto;
}
.post-content figure figcaption {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
}

/* Auto-gallery: server groups consecutive figure.image into a grid */
.post-auto-gallery {
    display: grid;
    gap: 10px;
    margin: 1.2em 0;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.post-auto-gallery figure {
    margin: 0 !important;
}
.post-auto-gallery img {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
    margin: 0 !important;
}

/* Video gallery: 2 columns */
.post-video-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 1.2em 0;
}
.post-video-gallery .post-video-wrap {
    margin: 0;
}
.post-video-gallery video {
    width: 100% !important;
    border-radius: 10px;
}
.post-video-wrap video {
    border-radius: 10px;
}
@media (max-width: 480px) {
    .post-video-gallery { grid-template-columns: 1fr; }
}

/* Post galleries (hand-coded in templates) */
.post-gallery { display: grid; gap: 12px; margin: 1.8em 0; }
.post-gallery--2  { grid-template-columns: 1fr 1fr; }
.post-gallery--3  { grid-template-columns: 1fr 1fr 1fr; }
.post-gallery--mixed { grid-template-columns: 1fr 1fr; }
.post-gallery--mixed .gallery-item:first-child { grid-column: 1 / -1; }

.gallery-item {
    border-radius: 16px; overflow: hidden;
    cursor: pointer; position: relative;
    box-shadow: 5px 5px 12px var(--neu-dark), -5px -5px 12px var(--neu-light);
}
.gallery-item img,
.gallery-item video {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.gallery-item--video::after {
    content: '\f04b';
    font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: #fff;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.25);
    pointer-events: none;
}

.post-content .post-inline-img {
    width: 100%; border-radius: 18px; margin: 1.5em 0; display: block;
    box-shadow: 5px 5px 12px var(--neu-dark), -5px -5px 12px var(--neu-light);
}
.post-content .post-video-wrap {
    border-radius: 18px; overflow: hidden; margin: 1.5em 0;
    box-shadow: 5px 5px 12px var(--neu-dark), -5px -5px 12px var(--neu-light);
}
.post-content .post-video-wrap video,
.post-content .post-video-wrap iframe {
    width: 100%; aspect-ratio: 16/9; display: block; border: none;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed; inset: 0; z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: zoom-out;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(15, 22, 18, 0.75);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
}
.lightbox__content {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    max-width: 90vw; max-height: 88vh;
}
.lightbox__content img,
.lightbox__content video {
    max-width: 90vw; max-height: 88vh;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    display: block;
}
.lightbox-download {
    position: absolute; top: 20px; right: 76px;
    width: 44px; height: 44px; border-radius: 14px;
    border: none;
    background: rgba(255,255,255,0.12);
    color: #fff; font-size: 1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s ease; z-index: 1;
    text-decoration: none;
}
.lightbox-download:hover { background: rgba(255,255,255,0.2); color: #fff; text-decoration: none; }
.lightbox-close {
    position: absolute; top: 20px; right: 24px;
    width: 44px; height: 44px; border-radius: 14px;
    border: none;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff; font-size: 1.1rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s ease; z-index: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ===== GOVNOVOZ RECORDS PAGE ===== */
.records-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 24px 100px;
    position: relative;
    min-height: 70vh;
}
.records-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 50px;
    text-align: center;
}
.records-scatter {
    position: relative;
    width: 100%;
    height: 560px;
}
.records-scatter .scatter-img {
    position: absolute;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 8px 8px 20px var(--neu-dark), -8px -8px 20px var(--neu-light);
}
.records-scatter .scatter-img img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}
.scatter-img--1 {
    width: 240px; height: auto;
    top: 10px; left: 0;
    transform: rotate(-5deg);
}
.scatter-img--2 {
    width: 210px; height: auto;
    top: 20px; right: 0;
    transform: rotate(4deg);
}
.scatter-img--3 {
    width: 225px; height: auto;
    bottom: 4px; left: 2%;
    transform: rotate(-3deg);
}

/* Spinning disc */
.disc-spinner {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 280px; height: 280px;
    z-index: 2;
}
.disc-spinner img {
    width: 100%; height: 100%;
    object-fit: contain;
    border-radius: 50%;
    animation: discStartup 5s cubic-bezier(0.4, 0, 0.2, 1) forwards, discSpin 1.1s linear 5s infinite;
    filter: drop-shadow(0 6px 24px rgba(0,0,0,0.2));
}
@keyframes discStartup {
    0%   { transform: rotate(0deg); }
    10%  { transform: rotate(8deg); }
    20%  { transform: rotate(40deg); }
    35%  { transform: rotate(140deg); }
    50%  { transform: rotate(360deg); }
    65%  { transform: rotate(680deg); }
    80%  { transform: rotate(1100deg); }
    100% { transform: rotate(1620deg); }
}
@keyframes discSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ===== GAPSTEIN'S ISLAND ===== */
.island-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 24px 100px;
}
.island-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
    text-align: center;
}
.island-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
}
.island-intro {
    max-width: 620px;
    margin: 0 auto 50px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-mid);
}
.island-intro p { margin-bottom: 1em; }
.island-section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 8px;
}

/* Map */
.island-map-wrap { margin-bottom: 60px; }
.island-map {
    border-radius: 22px;
    padding: 20px;
    background: var(--bg);
    box-shadow: 8px 8px 20px var(--neu-dark), -8px -8px 20px var(--neu-light);
    overflow: hidden;
}
.island-svg {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
}

/* River */
.island-river {
    fill: #5a8eaa;
}
.river-current {
    fill: none;
    stroke: rgba(255,255,255,0.12);
    stroke-width: 1.5;
    animation: riverDrift 6s linear infinite;
}
.river-current--2 {
    stroke: rgba(255,255,255,0.08);
    animation-duration: 8s;
    animation-delay: -2s;
}
.river-current--3 {
    stroke: rgba(255,255,255,0.06);
    animation-duration: 10s;
    animation-delay: -4s;
}
@keyframes riverDrift {
    from { transform: translateY(0); }
    to   { transform: translateY(120px); }
}

/* Riverbanks */
.island-bank--top  { fill: #8aaa70; }
.island-bank--bottom { fill: #8aaa70; }

/* Island */
.island-land {
    fill: #a8c8a0;
    stroke: #7aa870;
    stroke-width: 2;
}
.island-beach {
    fill: none;
    stroke: #7aa870;
    stroke-width: 3;
    opacity: 0.5;
}
.island-shore-sand {
    fill: none;
    stroke: #e0d6a8;
    stroke-width: 4;
    stroke-dasharray: 3 5;
    opacity: 0.45;
}

/* Trees */
.island-trees circle { fill: #5a8a4a; opacity: 0.55; }

/* Paths */
.island-path {
    fill: none;
    stroke: #b0a080;
    stroke-width: 2;
    stroke-dasharray: 5 3;
    opacity: 0.5;
}

/* Buildings */
.island-building {
    fill: var(--bg-light, #e8e4dd);
    stroke: #8a8070;
    stroke-width: 1.2;
}
.island-building-detail {
    stroke: #8a8070;
    stroke-width: 0.8;
    opacity: 0.4;
}
.island-dock {
    fill: #b0a080;
    stroke: #8a7a60;
    stroke-width: 0.8;
}
.island-cross {
    stroke: #8a7060;
    stroke-width: 1.5;
}

/* Markers */
.island-marker {
    fill: var(--bg, #e4e5e0);
    stroke: var(--accent, #2a7a6a);
    stroke-width: 2.5;
    cursor: pointer;
    transition: fill 0.2s, stroke-width 0.2s;
}
.island-marker:hover {
    fill: var(--accent-soft, #d0e8e0);
    stroke-width: 3.5;
}
.island-marker--villa,
.island-marker--boat,
.island-marker--chapel { fill: var(--bg-light, #eee); }
.island-marker-icon {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 12px;
    fill: var(--accent, #2a7a6a);
    text-anchor: middle;
    pointer-events: none;
}
.island-label {
    font-family: var(--font-label);
    font-size: 10px;
    fill: var(--text-mid);
    text-anchor: middle;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Animated ripples near shore */
.island-ripple {
    fill: none;
    stroke: rgba(255,255,255,0.25);
    stroke-width: 1;
    animation: rippleExpand 4s ease-in-out infinite;
}
.island-ripple--2 { animation-delay: -0.8s; animation-duration: 4.5s; }
.island-ripple--3 { animation-delay: -1.6s; animation-duration: 5s; }
.island-ripple--4 { animation-delay: -2.4s; animation-duration: 3.8s; }
.island-ripple--5 { animation-delay: -3.2s; animation-duration: 4.2s; }
.island-ripple--6 { animation-delay: -0.4s; animation-duration: 4.8s; }
@keyframes rippleExpand {
    0%   { rx: 6; ry: 2; opacity: 0; }
    30%  { opacity: 0.4; }
    100% { rx: 22; ry: 6; opacity: 0; }
}

/* Floating debris on water */
.island-leaf {
    fill: #6a9a50;
    opacity: 0.5;
    animation: leafFloat 12s ease-in-out infinite;
}
.island-leaf--2 { animation-delay: -4s; animation-duration: 15s; fill: #8a7a50; }
.island-leaf--3 { animation-delay: -8s; animation-duration: 10s; }
@keyframes leafFloat {
    0%   { transform: translate(0, 0); }
    25%  { transform: translate(8px, -3px); }
    50%  { transform: translate(14px, 2px); }
    75%  { transform: translate(6px, 4px); }
    100% { transform: translate(0, 0); }
}

.island-map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.island-map-legend i {
    color: var(--accent);
    margin-right: 4px;
}

/* Island Gallery — pinned to wall */
.island-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 20px auto 0;
    align-items: start;
}
.island-photo {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg);
    box-shadow: 8px 8px 20px var(--neu-dark), -8px -8px 20px var(--neu-light);
    transition: box-shadow 0.25s;
}
.island-photo:active {
    box-shadow: inset 3px 3px 8px var(--neu-dark), inset -3px -3px 8px var(--neu-light);
}
.island-photo::before {
    content: '';
    position: absolute;
    top: -18px; left: 50%;
    transform: translateX(-50%);
    width: 2px; height: 22px;
    background: linear-gradient(to bottom, transparent 0%, var(--neu-dark) 100%);
    z-index: 3;
}
.island-photo .pin {
    position: absolute; top: 2px; left: 50%;
    transform: translateX(-50%);
    width: 14px; height: 14px; border-radius: 50%; z-index: 4;
    background: radial-gradient(circle at 38% 32%, var(--bg-light), var(--neu-dark));
    box-shadow: 0 2px 5px rgba(0,0,0,0.18);
}
.island-photo img {
    width: 100%; height: auto;
    display: block;
}
.island-photo:nth-child(odd)  { transform: rotate(-1.5deg); }
.island-photo:nth-child(even) { transform: rotate(1.2deg); }
.island-photo:nth-child(3n)   { transform: rotate(-0.5deg); }

@media (max-width: 768px) {
    .island-gallery { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
    .island-gallery { grid-template-columns: 1fr; gap: 14px; }
}

/* ===== GVN SCANS GALLERY ===== */
.gvn-scans {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 20px 60px;
}
.gvn-scans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.gvn-scan-item {
    cursor: zoom-in;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg);
    box-shadow: 4px 4px 12px var(--neu-dark), -4px -4px 12px var(--neu-light);
}
.gvn-scan-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.gvn-scans-cta {
    text-align: center;
    margin-top: 36px;
    font-size: 1rem;
    color: var(--text-mid);
}
.gvn-scans-cta a {
    color: var(--accent);
    font-weight: 600;
}
@media (max-width: 768px) {
    .gvn-scans-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .gvn-scans-grid { grid-template-columns: 1fr; }
}

/* ===== FOOTER (transparent glass pill, narrower) ===== */
.site-footer {
    position: relative; z-index: 1;
    padding: 40px 24px 36px; text-align: center;
}
.footer-inner {
    max-width: min(88vw, 640px);
    margin: 0 auto;
    padding: 24px 32px;
    border-radius: 22px;
    color: #f0f2f0;
    background: linear-gradient(135deg, rgba(40,45,42,0.78) 0%, rgba(30,35,32,0.68) 100%);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow:
        0 8px 36px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255,255,255,0.12),
        inset 0 -1px 0 rgba(0,0,0,0.1);
}
.footer-accent {
    width: 36px; height: 2px; border-radius: 1px;
    background: linear-gradient(90deg, var(--accent-soft), var(--accent-warm));
    margin: 0 auto 12px;
}
.footer-brand {
    font-family: var(--font-heading);
    font-weight: 700; font-size: 1.1rem;
    margin-bottom: 3px; letter-spacing: -0.02em;
    color: rgba(255,255,255,0.92);
}
.footer-copy {
    font-family: var(--font-label);
    font-size: 0.68rem; color: rgba(255,255,255,0.55);
    letter-spacing: 0.12em;
}
.footer-links {
    display: flex; gap: 10px;
    justify-content: center; margin-top: 14px;
}
.footer-link {
    width: 34px; height: 34px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.14);
    transition: color 0.2s ease, background 0.2s ease;
}
.footer-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.18);
    text-decoration: none;
}
.footer-link:active {
    background: rgba(255,255,255,0.03);
}

.footer-columns {
    display: flex;
    gap: 24px;
    align-items: center;
}
.footer-col-left {
    flex: 1;
    text-align: center;
}
.footer-col-right {
    flex: 0 0 210px;
    border-left: 1px solid rgba(255,255,255,0.12);
    padding-left: 20px;
}
.footer-msg-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.82);
    letter-spacing: 0.04em;
    display: block;
    margin-bottom: 8px;
}
.footer-msg-flash {
    font-size: 0.75rem;
    color: #f0d080;
    margin-bottom: 6px;
    font-weight: 400;
}
.footer-msg-row {
    display: flex;
    gap: 6px;
    align-items: center;
}
.footer-msg-input {
    flex: 1;
    min-width: 0;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 10px;
    padding: 8px 11px;
    font-size: 0.8rem;
    color: #fff;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.2s;
}
.footer-msg-input::placeholder { color: rgba(255,255,255,0.4); }
.footer-msg-input:focus { border-color: rgba(255,255,255,0.4); }
.footer-msg-send {
    width: 32px; height: 32px;
    border-radius: 9px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.8);
    font-size: 0.72rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: color 0.2s, background 0.2s;
    flex-shrink: 0;
}
.footer-msg-send:hover {
    color: #fff;
    background: rgba(255,255,255,0.22);
}
@media (max-width: 480px) {
    .footer-columns { flex-direction: column; gap: 14px; }
    .footer-col-right { flex: none; width: 100%; border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 14px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .home-hero {
        grid-template-columns: 1fr;
        gap: 30px; text-align: center;
        padding: 20px 20px 10px;
    }
    .hero-photo-wrap {
        max-width: 320px; margin: 0 auto;
        aspect-ratio: 4/3;
    }
    .hero-text { align-items: center; }
    .social-row { justify-content: center; }
    .wall-grid { grid-template-columns: 1fr; gap: 16px; max-width: 400px; }
    .blog-card { grid-template-columns: 140px 1fr; }
    .blog-card__body { padding: 18px 20px; }
    .blog-card__title { font-size: 1.05rem; }
    .social-icon { width: 50px; height: 50px; font-size: 1.15rem; border-radius: 14px; }
    .post-gallery--3 { grid-template-columns: 1fr 1fr; }
    .header-page-title { display: none; }
    .site-header { top: 10px; width: 95vw; padding: 10px 10px 10px 18px; }
    .header-btn { width: 36px; height: 36px; font-size: 0.78rem; border-radius: 11px; }
    .header-controls { gap: 6px; }
    .records-scatter { height: 420px; }
    .scatter-img--1 { width: 165px; height: 130px; }
    .scatter-img--2 { width: 150px; height: 190px; }
    .scatter-img--3 { width: 155px; height: 120px; }
    .disc-spinner { width: 200px; height: 200px; }
}
@media (max-width: 480px) {
    .wall-grid { gap: 12px; }
    .blog-card { grid-template-columns: 1fr; }
    .blog-card__thumb { aspect-ratio: 16/9; }
    .social-row { gap: 12px; }
    .menu-panel { padding: 24px 22px 28px; }
    .records-scatter { height: 350px; }
    .scatter-img--1 { width: 130px; height: 100px; left: 2%; }
    .scatter-img--2 { width: 115px; height: 150px; right: 2%; }
    .scatter-img--3 { width: 125px; height: 95px; left: 12%; }
    .disc-spinner { width: 160px; height: 160px; }
}

/* ===== GLASS WINDOW OVERLAY ===== */
.glass-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(
        180deg,
        rgba(200, 220, 215, 0.18) 0%,
        rgba(180, 200, 195, 0.12) 30%,
        rgba(160, 185, 178, 0.08) 100%
    );
    backdrop-filter: blur(3px) saturate(90%) brightness(1.04);
    -webkit-backdrop-filter: blur(3px) saturate(90%) brightness(1.04);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    box-shadow: inset 0 0 80px rgba(255,255,255,0.06),
                inset 0 2px 0 rgba(255,255,255,0.12);
    transform-origin: top center;
    transform: scaleY(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}
.glass-overlay::before {
    content: '';
    position: absolute; inset: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 3px,
            rgba(255,255,255,0.02) 3px,
            rgba(255,255,255,0.02) 4px
        );
    pointer-events: none;
}
.glass-overlay::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        rgba(255,255,255,0.05) 0%,
        rgba(255,255,255,0.3) 30%,
        rgba(255,255,255,0.3) 70%,
        rgba(255,255,255,0.05) 100%
    );
}
.glass-overlay.active {
    pointer-events: all;
    opacity: 1;
    transform: scaleY(1);
    cursor: not-allowed;
}

/* ===== SUNGLASSES OVERLAY ===== */
.shades-overlay {
    position: fixed;
    inset: 0;
    z-index: 998;
    pointer-events: none;
    opacity: 0;
    background: rgba(30, 22, 10, 0.22);
    transition: opacity 0.5s ease;
}
.shades-overlay.active {
    opacity: 1;
}
.shades-overlay::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.shades-overlay.active::before {
    opacity: 1;
}

/* Sunglasses animation */
.shades-anim {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: none;
}
.shades-anim img {
    width: 280px;
    height: auto;
    display: block;
}
.shades-anim.playing {
    animation: shadesAppear 0.85s ease-out forwards;
}
@keyframes shadesAppear {
    0%   { transform: translate(-50%, -50%) scale(0.3); opacity: 0; }
    25%  { transform: translate(-50%, -50%) scale(1.4); opacity: 1; }
    60%  { transform: translate(-50%, -50%) scale(2); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(8); opacity: 0; }
}

/* ===== COLOR PALETTES ===== */
body.palette-warm {
    --bg: #e5ddd4;
    --bg-dark: #cdc5bc;
    --bg-light: #f4ede6;
    --accent: #c4713b;
    --accent-deep: #9a5528;
    --accent-soft: #d4946a;
    --pine: #4a3828;
    --wood: #8b6e4e;
    --neu-dark: #cbc3ba;
    --neu-light: #fff7f0;
}
body.palette-warm .blob--1 { background: radial-gradient(circle, #d4946a 0%, #c4713b 100%); }
body.palette-warm .blob--2 { background: radial-gradient(circle, #e8c08a 0%, #a85a2a 100%); }
body.palette-warm .blob--3 { background: radial-gradient(circle, #c49060 0%, #8b5e3e 100%); }

body.palette-cool {
    --bg: #dde2e8;
    --bg-dark: #c3c8ce;
    --bg-light: #f0f4f8;
    --accent: #4a6fa5;
    --accent-deep: #34507a;
    --accent-soft: #7a9cc8;
    --pine: #2a3a4e;
    --wood: #5a6a7e;
    --neu-dark: #c0c5cb;
    --neu-light: #f8fcff;
}
body.palette-cool .blob--1 { background: radial-gradient(circle, #7a9cc8 0%, #4a6fa5 100%); }
body.palette-cool .blob--2 { background: radial-gradient(circle, #a0b8d4 0%, #34507a 100%); }
body.palette-cool .blob--3 { background: radial-gradient(circle, #6088b8 0%, #2a4a70 100%); }

body.palette-forest {
    --bg: #dae0d6;
    --bg-dark: #c0c6bc;
    --bg-light: #eef4ea;
    --accent: #4a7a3a;
    --accent-deep: #2e5c22;
    --accent-soft: #7aaa6a;
    --pine: #2a3e24;
    --wood: #6e8b4e;
    --neu-dark: #bec4ba;
    --neu-light: #f6fcf2;
}
body.palette-forest .blob--1 { background: radial-gradient(circle, #7aaa6a 0%, #4a7a3a 100%); }
body.palette-forest .blob--2 { background: radial-gradient(circle, #a0c490 0%, #3a6a2a 100%); }
body.palette-forest .blob--3 { background: radial-gradient(circle, #5a9a4a 0%, #2e5c22 100%); }

body.palette-sunset {
    --bg: #e8dde0;
    --bg-dark: #d0c3c8;
    --bg-light: #f6eff2;
    --accent: #b8456a;
    --accent-deep: #8a2850;
    --accent-soft: #d87a98;
    --pine: #3a2030;
    --wood: #7a5060;
    --neu-dark: #cec3c8;
    --neu-light: #fff5f8;
}
body.palette-sunset .blob--1 { background: radial-gradient(circle, #e07898 0%, #b8456a 100%); }
body.palette-sunset .blob--2 { background: radial-gradient(circle, #f0a050 0%, #d06830 100%); }
body.palette-sunset .blob--3 { background: radial-gradient(circle, #c86088 0%, #8a2850 100%); }

body.palette-apple {
    --bg: #f0f0f5;
    --bg-dark: #d4d4da;
    --bg-light: #fafaff;
    --accent: #0071e3;
    --accent-deep: #0058b0;
    --accent-soft: #40a0ff;
    --pine: #1d1d1f;
    --wood: #6e6e73;
    --neu-dark: #ccccd2;
    --neu-light: #ffffff;
}
body.palette-apple .blob--1 { background: radial-gradient(circle, #5ac8fa 0%, #0071e3 100%); }
body.palette-apple .blob--2 { background: radial-gradient(circle, #ff6482 0%, #ff2d55 100%); opacity: 0.25; }
body.palette-apple .blob--3 { background: radial-gradient(circle, #30d158 0%, #28a745 100%); opacity: 0.25; }

body.palette-lavender {
    --bg: #e4e0ea;
    --bg-dark: #cac6d0;
    --bg-light: #f2eef8;
    --accent: #7a5ab8;
    --accent-deep: #5a3a98;
    --accent-soft: #a88ada;
    --pine: #2a2038;
    --wood: #6a5a78;
    --neu-dark: #c8c4ce;
    --neu-light: #fcf8ff;
}
body.palette-lavender .blob--1 { background: radial-gradient(circle, #a88ada 0%, #7a5ab8 100%); }
body.palette-lavender .blob--2 { background: radial-gradient(circle, #d0a8e8 0%, #5a3a98 100%); }
body.palette-lavender .blob--3 { background: radial-gradient(circle, #8a6ac8 0%, #4a2a88 100%); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--neu-dark); border-radius: 3px; }
