/* ============================================
   非我墨属 — 前台样式（禅意水墨）
   ============================================ */

:root {
    --c-black: #1a1a1a;
    --c-gray-900: #2c2c2c;
    --c-gray-700: #555;
    --c-gray-500: #888;
    --c-gray-300: #ccc;
    --c-gray-100: #f4f4f4;
    --c-white: #fff;
    --c-zhu: #b88a4a;          /* 赭石 */
    --c-hua: #5a7c8c;          /* 花青 */
    --c-light-zhu: #d4af7a;
    --c-bg: #fafaf8;
    --c-paper: #f9f6f0;        /* 宣纸 */

    --font-serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "STSong", serif;
    --font-sans: "PingFang SC", "Microsoft YaHei", sans-serif;

    --container-max: 1240px;
    --section-pad-y: clamp(60px, 10vw, 120px);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-serif);
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: var(--c-gray-900);
    background: var(--c-bg);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .25s;
}

a:hover { color: var(--c-zhu); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ 滚动动画 ============ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .9s ease-out, transform .9s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============ 导航（参考 Bootstrap navbar 风格） ============ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
    padding: 15px 0;
    transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.nav-inner { max-width: var(--container-max); margin:0 auto; padding:0 24px; display:flex; align-items:center; justify-content:space-between; }
.brand { font-size: 1.8rem; font-weight: 700; color: var(--c-black); display:flex; align-items:center; gap:8px; }
.brand-text { font-family: 'Ma Shan Zheng', cursive; font-size: 26px; font-weight: 400; letter-spacing: 3px; color: #1a1a1a; }
.brand-logo { height: 50px; width: auto; display: block; }
.nav-menu { display:flex; align-items:center; }
.nav-link { font-weight: 600; letter-spacing: 0.1em; margin:0 10px; padding:8px 16px; border-radius:50px; color:var(--c-gray-900); transition:.3s; font-size:15px; }
.nav-link:hover, .nav-link.active { color:#fff; background: linear-gradient(135deg, var(--c-zhu), var(--c-light-zhu)); }
.nav-toggle { display:none; background:none; border:none; padding:8px; cursor:pointer; border-radius:4px; }
.nav-toggle:focus { outline:none; box-shadow:none; }
.nav-toggle-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26, 26, 26, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    transition: transform .2s;
}
.nav-toggle.active .nav-toggle-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath stroke='rgba(26, 26, 26, 0.8)' stroke-linecap='round' stroke-width='2' d='M2 2l12 12M14 2L2 14'/%3e%3c/svg%3e");
}

/* ============ 通用 section ============ */
.section {
    padding: var(--section-pad-y) 0;
    position: relative;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.2em;
    margin-bottom: 12px;
    color: var(--c-black);
}

.section-subtitle {
    text-align: center;
    color: var(--c-gray-500);
    font-size: clamp(0.875rem, 1.6vw, 1rem);
    letter-spacing: 0.15em;
    margin-bottom: 56px;
}

/* ============ 1. 首屏 ============ */
.home-section {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-white);
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.home-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.home-bg img,
.home-bg-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-bg-placeholder {
    background: linear-gradient(135deg, #2d333b 0%, #1f2329 100%);
}

.home-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.home-content {
    text-align: center;
    z-index: 1;
    padding: 0 24px;
}

.home-title {
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: 0.3em;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    margin-bottom: 24px;
    color: var(--c-white);
    writing-mode: vertical-rl;
    line-height: 1.5;
    height: 6em;
    margin: 0 auto 24px;
}

.home-title.horizontal {
    writing-mode: horizontal-tb;
    height: auto;
}

.home-subtitle {
    font-size: clamp(0.875rem, 1.6vw, 1.125rem);
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    text-align: right;
    max-width: 320px;
    margin: 24px 0 0 auto;
    padding-right: 8px;
}

.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 auto;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-white);
    margin: 0 auto;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(20px); opacity: 1; }
}

/* ============ 2. 关于画家 ============ */
.about-section {
    background: var(--c-paper);
}

.about-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: center;
}

.about-portrait {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 4px solid var(--c-white);
    box-shadow: 0 0 0 1px rgba(184, 138, 74, 0.3), 0 8px 24px rgba(0, 0, 0, 0.08);
    position: relative;
}

.about-portrait::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(184, 138, 74, 0.2);
    pointer-events: none;
}

.about-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portrait-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--c-gray-300), var(--c-gray-100));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-zhu);
    font-size: 80px;
    font-weight: 700;
    font-family: var(--font-serif);
}

.about-content {
    max-width: 600px;
}

.about-text {
    color: var(--c-gray-900);
    line-height: 2;
    font-size: 15px;
}

.about-text p {
    margin-bottom: 16px;
}

.about-sign {
    margin-top: 32px;
    font-size: 22px;
    color: var(--c-zhu);
    letter-spacing: 0.4em;
    font-style: italic;
}

/* ============ 3. 精选之作 ============ */
.featured-section {
    background: var(--c-bg);
}

.featured-scroller {
    position: relative;
    padding: 0 50px;
}

.featured-list {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 16px 0;
    scrollbar-width: none;
}

.featured-list::-webkit-scrollbar { display: none; }

.featured-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: var(--c-white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform .35s, box-shadow .35s;
}

.featured-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    color: inherit;
}

.featured-img {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: var(--c-gray-100);
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s;
}

.featured-card:hover .featured-img img {
    transform: scale(1.06);
}

.featured-info {
    padding: 16px 20px;
    text-align: center;
}

.featured-info h3 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.size-tag {
    display: inline-block;
    padding: 2px 10px;
    font-size: 12px;
    color: var(--c-zhu);
    border: 1px solid var(--c-zhu);
    border-radius: 2px;
    letter-spacing: 0.1em;
}

.scroller-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--c-white);
    border: 1px solid var(--c-gray-300);
    color: var(--c-gray-700);
    cursor: pointer;
    font-size: 22px;
    z-index: 2;
    transition: all .25s;
}

.scroller-btn:hover {
    background: var(--c-zhu);
    border-color: var(--c-zhu);
    color: var(--c-white);
}

.scroller-btn.prev { left: 0; }
.scroller-btn.next { right: 0; }

/* ============ 4. 禅意之路（时间轴） ============ */
.journey-section {
    background: var(--c-paper);
}

.timeline {
    max-width: 880px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--c-zhu);
    opacity: 0.4;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: stretch;
    gap: 24px;
    max-width: 960px;
    margin: 0 auto 48px;
}
.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }

.timeline-dot { display: none; }

.timeline-card {
    flex: 1;
    background: var(--c-white);
    padding: 24px;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.timeline-year {
    color: var(--c-zhu);
    font-size: 12px;
    letter-spacing: 0.2em;
    margin-bottom: 8px;
}

.timeline-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.1em;
}

.timeline-img {
    flex: 1;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    background: var(--c-white);
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .timeline-item { flex-direction: column !important; }
    .timeline-img { max-height: 240px; }
}

.timeline-content {
    color: var(--c-gray-700);
    font-size: 14px;
    line-height: 1.9;
}

@media (max-width: 768px) {
    .timeline-body {
        flex-direction: column;
    }
    .timeline-body .timeline-img {
        width: 100%;
        order: -1;
    }
}

/* ============ 5. 观·照 ============ */
.insight-section {
    background: var(--c-bg);
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.insight-card {
    background: var(--c-white);
    border-radius: 4px;
    overflow: hidden;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: transform .35s, box-shadow .35s;
}

.insight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.insight-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 2px;
    margin-bottom: 16px;
    background: var(--c-gray-100);
}

.insight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
}

.insight-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.15em;
    color: var(--c-black);
}

.insight-sub {
    color: var(--c-zhu);
    font-size: 13px;
    letter-spacing: 0.2em;
    margin-bottom: 16px;
}

.insight-content {
    color: var(--c-gray-700);
    font-size: 14px;
    line-height: 1.9;
    text-align: left;
}

.insight-footer {
    margin-top: 60px;
    text-align: center;
    color: var(--c-gray-500);
    font-size: 14px;
    letter-spacing: 0.2em;
    font-style: italic;
}

/* ============ 6. 画风特点 ============ */
.style-section {
    background: var(--c-paper);
}

.style-list {
    max-width: 880px;
    margin: 0 auto;
}

.style-item {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 30px 0;
    border-bottom: 1px solid rgba(184, 138, 74, 0.15);
}

.style-item:last-child {
    border-bottom: none;
}

.style-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--c-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--c-zhu);
    color: var(--c-zhu);
    font-size: 24px;
    padding: 5px;
}

.style-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.style-text {
    flex: 1;
}

.style-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--c-black);
    margin-bottom: 12px;
    letter-spacing: 0.15em;
}

.style-text p {
    color: var(--c-gray-700);
    font-size: 14px;
    line-height: 1.95;
}

/* ============ 7. 作品集 ============ */
.gallery-section {
    background: var(--c-bg);
}

.gallery-filter {
    text-align: center;
    margin-bottom: 48px;
    color: var(--c-gray-700);
    font-size: 13px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.filter-label {
    color: var(--c-gray-500);
    letter-spacing: 0.1em;
}

.filter-link {
    padding: 4px 14px;
    border-radius: 2px;
    border: 1px solid transparent;
    color: var(--c-gray-700);
    transition: all .25s;
}

.filter-link:hover {
    color: var(--c-zhu);
}

.filter-link.active {
    color: var(--c-zhu);
    border-color: var(--c-zhu);
}

.filter-divider {
    color: var(--c-gray-300);
    margin: 0 8px;
}

.year-filter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.year-select {
    padding: 4px 8px;
    border: 1px solid var(--c-gray-300);
    border-radius: 2px;
    background: var(--c-white);
    font-family: var(--font-serif);
    font-size: 13px;
    color: var(--c-gray-700);
}

.filter-btn {
    padding: 4px 14px;
    border: 1px solid var(--c-zhu);
    background: var(--c-zhu);
    color: var(--c-white);
    border-radius: 2px;
    cursor: pointer;
    font-size: 13px;
}

.gallery-masonry {
    columns: 3;
    column-gap: 24px;
    margin: 0 auto;
}

.gallery-item {
    display: block;
    margin-bottom: 24px;
    break-inside: avoid;
    background: var(--c-white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform .35s, box-shadow .35s;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    color: inherit;
}

.gallery-item.banner .gallery-img {
    aspect-ratio: 3 / 2;
}

.gallery-item.scroll .gallery-img {
    aspect-ratio: 2 / 3;
}

.gallery-img {
    overflow: hidden;
    background: var(--c-gray-100);
    position: relative;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s, filter .4s;
}

.gallery-item:hover .gallery-img img {
    transform: scale(1.06);
}

.gallery-hover {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .35s;
}

.gallery-item:hover .gallery-hover {
    opacity: 1;
}

.hover-text {
    color: var(--c-white);
    font-size: 22px;
    letter-spacing: 0.4em;
    writing-mode: vertical-rl;
    font-weight: 300;
}

.gallery-info {
    padding: 14px 16px;
    text-align: center;
}

.gallery-info h3 {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
    color: var(--c-black);
}

.gallery-meta {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 12px;
    color: var(--c-gray-500);
}

.gallery-meta .year {
    color: var(--c-zhu);
}

.gallery-actions {
    text-align: center;
    margin-top: 40px;
}

.gallery-actions .pagination {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.gallery-actions .pagination li {
    display: inline-block;
}

.gallery-actions .pagination a,
.gallery-actions .pagination span {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid var(--c-gray-300);
    border-radius: 2px;
    color: var(--c-gray-700);
    font-size: 13px;
    transition: all .25s;
    background: var(--c-white);
}

.gallery-actions .pagination a:hover {
    border-color: var(--c-zhu);
    color: var(--c-zhu);
}

.gallery-actions .pagination .active span {
    background: var(--c-zhu);
    border-color: var(--c-zhu);
    color: var(--c-white);
}

.gallery-actions .pagination .disabled span {
    color: var(--c-gray-300);
    cursor: not-allowed;
}

.btn-load-more {
    background: none;
    border: 1px solid var(--c-zhu);
    color: var(--c-zhu);
    padding: 12px 48px;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 0.2em;
    border-radius: 2px;
    transition: all .3s;
    font-family: var(--font-serif);
}

.btn-load-more:hover {
    background: var(--c-zhu);
    color: var(--c-white);
}

/* ============ 8. 联系 ============ */
.contact-section {
    background: var(--c-paper);
    position: relative;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    background-image: url('/static/front/images/mountain.svg');
    background-size: cover;
    background-position: bottom center;
    opacity: 0.08;
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 980px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
}

.contact-label {
    font-size: 12px;
    color: var(--c-gray-500);
    letter-spacing: 0.3em;
}

.contact-value {
    font-size: 16px;
    color: var(--c-black);
}

.wechat-qr {
    width: 140px;
    height: 140px;
    border-radius: 4px;
    overflow: hidden;
    background: var(--c-white);
    border: 1px solid var(--c-gray-300);
}

.wechat-qr img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-form {
    background: var(--c-white);
    padding: 32px;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.form-field {
    margin-bottom: 18px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid var(--c-gray-300);
    border-radius: 2px;
    padding: 12px 14px;
    font-size: 14px;
    font-family: var(--font-serif);
    background: var(--c-bg);
    color: var(--c-black);
    transition: border-color .25s;
    letter-spacing: 0.05em;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--c-zhu);
}

.btn-submit {
    width: 100%;
    background: var(--c-zhu);
    color: var(--c-white);
    border: none;
    padding: 12px;
    cursor: pointer;
    font-size: 15px;
    letter-spacing: 0.3em;
    border-radius: 2px;
    font-family: var(--font-serif);
    transition: background .3s;
}

.btn-submit:hover { background: var(--c-light-zhu); }

.btn-submit:disabled {
    background: var(--c-gray-300);
    cursor: not-allowed;
}

.form-tip {
    margin-top: 12px;
    text-align: center;
    font-size: 13px;
    color: var(--c-gray-500);
    min-height: 20px;
}

.form-tip.success { color: #67c23a; }
.form-tip.error { color: #e54d42; }

/* ============ 页脚 ============ */
.site-footer {
    background: var(--c-black);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
    text-align: center;
}

.footer-brand {
    font-size: 16px;
    letter-spacing: 0.3em;
    color: var(--c-white);
}

.footer-copy {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-sign {
    font-size: 16px;
    color: var(--c-zhu);
    letter-spacing: 0.4em;
    font-style: italic;
}

.site-footer .container > p {
    margin: 0 0 14px 0;
    line-height: 1.6;
}
.site-footer .container > p:last-child {
    margin-bottom: 0;
}

.footer-admin {
    margin-top: 30px;
    font-size: 12px;
}

.footer-admin a {
    color: rgba(255, 255, 255, 0.3);
}

.footer-admin a:hover { color: var(--c-zhu); }

/* 文字辅助 */
.text-center { text-align: center; }
.text-muted { color: var(--c-gray-500); }
/* ================================================================
   Banner
   ================================================================ */
.top-banner { position:relative; width:100%; overflow:hidden; margin-top:56px; background:transparent; }
.top-banner-slide { position:relative; }
.top-banner-slide:first-child { display:block; }
.top-banner-slide .top-banner-desc { pointer-events:none; }
.top-banner-img { width:100%; height:auto; display:block; }
.top-banner-title { position:absolute; bottom:40px; left:50%; transform:translateX(-50%); color:#fff; font-size:clamp(16px, 2.5vw, 28px); font-family:"Noto Serif SC",serif; letter-spacing:.15em; text-shadow:0 2px 12px rgba(0,0,0,.5); white-space:nowrap; }
.top-banner-dots { position:absolute; bottom:16px; left:50%; transform:translateX(-50%); display:flex; gap:8px; z-index:2; }
.top-banner-dot { width:12px; height:12px; background:rgba(255,255,255,.5); cursor:pointer; transition:background .25s; }
.top-banner-dot.active { background:#b88a4a; }

@media (max-width:1024px) {
    .top-banner-img { width:100%; height:auto; }
    .top-banner-title { bottom:30px; font-size:clamp(14px,2.2vw,22px); }
}
@media (max-width:768px) {
    .top-banner-img { width:100%; height:auto; }
    .top-banner-title { bottom:20px; font-size:clamp(13px,2vw,18px); }
}
@media (max-width:480px) {
    .top-banner-img { width:100%; height:auto; }
    .top-banner-title { bottom:14px; font-size:14px; letter-spacing:.1em; }
}

