:root {
    --bg-primary: #FDFBF7;
    --bg-secondary: #F8F4EC;
    --bg-card: #FFFFFF;
    --text-dark: #2E2416;
    --text-medium: #5B4B38;
    --text-light: #8C7B64;
    --text-muted: #A89880;
    --jade: #6B8F71;
    --jade-dark: #4A6B50;
    --jade-pale: #EDF4EE;
    --gold: #B89A5B;
    --gold-dark: #9A7D45;
    --gold-pale: #FBF6ED;
    --red: #B5443C;
    --line: rgba(184,154,91,0.16);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 6px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.08);
    --radius-md: 14px;
    --radius-lg: 20px;
    --font-serif: "STSong", "Songti SC", "Noto Serif SC", "SimSun", serif;
    --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    --transition: 0.25s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4c5a9' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3 { line-height: 1.28; letter-spacing: 0; }

.top-bar {
    background: #3E3123;
    color: #E3D5BC;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.site-header {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(0,0,0,0.04), var(--shadow-md);
}
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 24px;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; color: inherit; }
.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--jade-pale);
    border: 2px solid var(--jade);
    color: var(--jade-dark);
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
}
.brand strong { display: block; font-family: var(--font-serif); font-size: 1.5rem; letter-spacing: 1.5px; line-height: 1.2; }
.brand small { display: block; max-width: 310px; color: var(--text-muted); font-size: 0.7rem; letter-spacing: 1px; line-height: 1.45; }
.main-nav { display: flex; gap: 4px; flex-wrap: wrap; align-items: center; justify-content: center; }
.main-nav a {
    color: var(--text-medium);
    padding: 10px 18px;
    border-radius: 24px;
    font-size: 0.93rem;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}
.main-nav a:hover { color: var(--jade-dark); background: var(--jade-pale); }
.header-cta {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 24px;
    background: var(--red);
    color: #fff;
    font-weight: 600;
}

.home-breadcrumb, .breadcrumb {
    max-width: 1280px;
    margin: 12px auto 0;
    padding: 0 24px;
    font-size: 0.82rem;
    color: var(--text-muted);
}
.home-breadcrumb a, .breadcrumb a { color: var(--text-muted); }
.home-breadcrumb a:hover, .breadcrumb a:hover { color: var(--jade-dark); }

.home-hero {
    max-width: 1280px;
    margin: 24px auto 0;
    padding: 0 24px;
}
.home-hero-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    display: flex;
    align-items: center;
    gap: 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(184,154,91,0.1);
}
.home-hero-copy { flex: 1; }
.hero-badge {
    display: inline-block;
    background: var(--gold-pale);
    color: var(--gold-dark);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.hero-topic {
    display: inline-block;
    background: var(--gold-pale);
    color: var(--gold-dark);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: var(--font-sans);
    letter-spacing: 0;
}
.hero-slogan {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.hero-slogan span { color: var(--jade-dark); }
.home-hero-copy p {
    max-width: 520px;
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 28px;
}
.home-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 12px 24px;
    border-radius: 30px;
    font: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.btn-primary, .btn.primary { background: var(--jade); color: #fff; box-shadow: 0 6px 18px rgba(74,107,80,0.25); }
.btn-primary:hover, .btn.primary:hover { background: var(--jade-dark); transform: translateY(-2px); }
.btn-outline, .btn.ghost { background: transparent; color: var(--jade-dark); border: 2px solid var(--jade); }
.btn-outline:hover, .btn.ghost:hover { background: var(--jade-pale); }
.home-hero-visual {
    width: 200px;
    height: 200px;
    background: #F5EFE6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: inset 0 2px 8px rgba(255,255,255,0.8), 0 16px 40px rgba(0,0,0,0.08);
    border: 3px solid rgba(184,154,91,0.2);
    flex-shrink: 0;
}
.home-hero-visual img { width: 100%; height: 100%; object-fit: cover; }

.home-section, .section-wrap, .page-shell {
    max-width: 1280px;
    margin: 64px auto 0;
    padding: 0 24px;
}
.home-section-head, .section-head {
    text-align: center;
    margin-bottom: 40px;
}
.home-section-head span {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold-dark);
    padding: 5px 16px;
    border: 1px solid rgba(184,154,91,0.3);
    border-radius: 20px;
    background: var(--gold-pale);
    margin-bottom: 10px;
}
.home-section-head h2, .section-head h2, .page-title h1 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-dark);
}
.home-section-head h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    margin: 8px auto 0;
    background: var(--gold);
    border-radius: 2px;
}
.home-section-head p, .page-title p { color: var(--text-muted); font-size: 0.95rem; margin-top: 12px; }

.home-products-grid, .products-grid, .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
}
.home-product-card, .product-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
}
.home-product-card:hover, .product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(184,154,91,0.2); }
.card-image, .product-card > a > img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    background: #F9F6F0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.card-image img, .product-card img { width: 100%; height: 100%; object-fit: cover; }
.card-image span {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--red);
    color: #fff;
    padding: 4px 12px;
    border-radius: 14px;
    font-size: 0.75rem;
    font-weight: 600;
}
.card-body, .product-body {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.card-grade, .product-body span { font-size: 0.75rem; color: var(--gold-dark); font-weight: 600; margin-bottom: 4px; }
.card-body h3, .product-body h3 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; min-height: 0; }
.card-specs { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 10px; display: flex; gap: 14px; }
.card-body p, .product-body p { color: var(--text-medium); font-size: 0.9rem; margin-bottom: 12px; }
.card-body strong, .product-body strong { font-size: 1.45rem; font-weight: 700; color: var(--red); margin-top: auto; }
.card-actions { margin-top: 12px; display: flex; gap: 8px; }
.card-actions a {
    flex: 1;
    text-align: center;
    padding: 10px 16px;
    border-radius: 22px;
    font-size: 0.85rem;
    font-weight: 600;
}
.card-actions a:first-child { background: var(--jade-pale); color: var(--jade-dark); }
.card-actions a:last-child { background: var(--gold); color: #fff; }

.price-grid, .gift-grid, .home-articles-grid, .articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}
.price-card, .gift-card, .home-article-card, .article-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px 22px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s;
}
.price-card { text-align: center; }
.price-card:hover, .gift-card:hover, .home-article-card:hover, .article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.price-range { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--jade-dark); }
.price-level { display: inline-block; font-size: 0.8rem; color: var(--gold-dark); background: var(--gold-pale); padding: 4px 14px; border-radius: 12px; margin: 10px 0; }
.price-card p { color: var(--text-medium); font-size: 0.9rem; }
.price-card small { display: block; margin-top: 10px; color: var(--text-muted); font-style: italic; }
.identify-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.identify-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid transparent;
    transition: all 0.3s;
}
.identify-card:hover { border-left-color: var(--jade); box-shadow: var(--shadow-md); }
.id-icon { font-size: 24px; width: 52px; height: 52px; background: var(--jade-pale); color: var(--jade-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--font-serif); font-weight: 700; }
.identify-card h3 { font-family: var(--font-serif); font-size: 1.05rem; margin-bottom: 4px; }
.identify-card p { color: var(--text-medium); font-size: 0.88rem; }
.gift-card { text-align: center; border-top: 5px solid var(--gold); }
.gift-card h3 { font-family: var(--font-serif); font-size: 1.2rem; }
.gift-card small { color: var(--text-muted); }
.gift-meaning { color: var(--jade-dark); font-weight: 500; margin-top: 8px; }
.gift-card p:last-child { color: var(--text-medium); font-size: 0.85rem; font-style: italic; margin-top: 8px; }
.home-article-card time, .article-meta { color: var(--text-muted); font-size: 0.82rem; }
.home-article-card h3, .article-title { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; line-height: 1.5; margin: 8px 0; }
.home-article-card p, .article-summary { color: var(--text-medium); font-size: 0.9rem; }
.read-more, .article-link { display: inline-block; margin-top: 14px; color: var(--jade-dark); font-weight: 600; font-size: 0.9rem; }

.safe-layout, .two-col-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.pitfall-list { display: flex; flex-direction: column; gap: 16px; }
.pitfall-list > h3 { font-family: var(--font-serif); color: #8B3A2A; margin-bottom: 2px; }
.pitfall-item {
    background: #FFFBF6;
    border-radius: var(--radius-md);
    padding: 20px 22px;
    border-left: 5px solid #D49B6A;
    box-shadow: var(--shadow-sm);
}
.pitfall-item h4 { font-family: var(--font-serif); font-size: 1rem; color: #8B3A2A; margin-bottom: 4px; }
.pitfall-item p { font-size: 0.85rem; color: var(--text-medium); margin-bottom: 4px; }
.pitfall-item strong { font-size: 0.82rem; color: var(--jade-dark); font-weight: 600; }
.guarantee-panel {
    background: #FCFAF5;
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(184,154,91,0.15);
}
.guarantee-panel h3 { font-family: var(--font-serif); font-size: 1.3rem; text-align: center; margin-bottom: 20px; }
.guarantee-item { display: flex; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px solid rgba(184,154,91,0.1); }
.guarantee-item span { color: var(--text-medium); }
.service-line { text-align: center; margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(184,154,91,0.2); font-size: 0.85rem; color: var(--text-medium); }

.consult-block {
    max-width: 1280px;
    margin: 64px auto 0;
    padding: 28px;
    background: #3E3123;
    color: #fff;
    border-radius: var(--radius-lg);
}
.consult-block h2 {
    margin-bottom: 8px;
    font-family: var(--font-serif);
    color: #FFFFFF;
}
.consult-block p { color: #F3E7CE; }
.consult-block form {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
    gap: 12px;
    align-items: end;
    margin-top: 14px;
}
.consult-block label {
    display: grid;
    gap: 6px;
    font-weight: 700;
    color: #FFF8EA;
}
input, textarea, select {
    width: 100%;
    min-height: 42px;
    padding: 9px 10px;
    border: 1px solid rgba(184,154,91,0.24);
    border-radius: 8px;
    background: #fff;
    color: var(--text-dark);
    font: inherit;
}
input::placeholder, textarea::placeholder { color: #9B8B73; opacity: 1; }
.consult-block input, .consult-block textarea, .consult-block select {
    background: #FFFDF8;
    color: #2E2416;
    border-color: rgba(227,213,188,0.55);
}
.consult-block input::placeholder, .consult-block textarea::placeholder {
    color: #8C7B64;
}
.consult-block input,
.consult-block textarea,
.consult-block select,
.consult-block input[type="text"],
.consult-block input[type="tel"],
.consult-block input[type="email"] {
    color: #2E2416 !important;
    -webkit-text-fill-color: #2E2416;
}
.consult-block input::placeholder,
.consult-block textarea::placeholder {
    color: #8C7B64 !important;
    -webkit-text-fill-color: #8C7B64;
    opacity: 1;
}
textarea { min-height: 94px; resize: vertical; }
.consult-block textarea { min-height: 42px; }
.notice { padding: 10px 12px; background: #edf4ee; color: var(--jade-dark); border-radius: 8px; }

.page-shell, .product-page { max-width: 1280px; margin: 32px auto 0; padding: 0 24px; }
.section-head { display: flex; align-items: end; justify-content: space-between; text-align: left; gap: 16px; margin-bottom: 18px; }
.section-head a { color: var(--jade-dark); font-weight: 800; }
.page-title { margin-bottom: 22px; }
.list-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-detail { display: grid; grid-template-columns: 390px minmax(0, 1fr); gap: 22px; align-items: start; }
.detail-media, .detail-info, .detail-content, .related-panel, .article-detail {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-sm);
}
.detail-media img { width: 300px; height: 300px; object-fit: cover; background: #F9F6F0; border-radius: 14px; margin: 0 auto; }
.product-media-card { display: grid; gap: 16px; }
.detail-info h1 { margin: 0 0 12px; font-family: var(--font-serif); font-size: clamp(28px, 4vw, 42px); }
.detail-info p { color: var(--text-medium); }
.eyebrow { color: var(--gold-dark); font-weight: 800; }
.spec-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 0; }
.spec-grid div { padding: 10px 12px; background: var(--gold-pale); border-left: 3px solid var(--gold); border-radius: 10px; }
.spec-grid span { display: block; color: var(--text-muted); font-size: 13px; }
.spec-grid strong { display: block; color: var(--jade-dark); overflow-wrap: anywhere; }
.detail-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.detail-info > section { margin-top: 20px; background: #FFFBF6; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 18px; }
.detail-info .consult-block { max-width: none; margin: 18px 0 0; border-radius: var(--radius-md); }
.detail-info .consult-block form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.detail-info > .consult-block {
    background: #FFFBF6;
    color: var(--text-dark);
    box-shadow: none;
}
.detail-info > .consult-block h2,
.detail-info > .consult-block label {
    color: var(--text-dark);
}
.detail-info > .consult-block p {
    color: var(--text-medium);
}
.detail-info > .consult-block input,
.detail-info > .consult-block textarea,
.detail-info > .consult-block select {
    background: #FFFFFF;
    color: var(--text-dark) !important;
    -webkit-text-fill-color: var(--text-dark);
}
.detail-info > .consult-block input::placeholder,
.detail-info > .consult-block textarea::placeholder {
    color: var(--text-light) !important;
    -webkit-text-fill-color: var(--text-light);
}
.detail-content { max-width: 1280px; margin: 24px auto 0; }
.product-related-section { margin-top: 38px; padding: 0; }
.check-list { margin: 0; padding-left: 20px; color: var(--text-medium); }
.compact-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.article-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.article-row { display: grid; grid-template-columns: 86px 1fr; gap: 14px; align-items: center; padding: 10px; border-bottom: 1px solid var(--line); }
.article-row:last-child { border-bottom: 0; }
.article-row img { width: 86px; height: 86px; object-fit: cover; background: #F9F6F0; border-radius: 8px; }
.article-row strong { display: block; line-height: 1.45; }
.article-row small { color: var(--text-muted); }
.category-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.category-tabs a { padding: 8px 12px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.category-tabs .active { background: var(--jade); color: #fff; border-color: var(--jade); }
.article-list-page {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.article-list-page .article-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
}
.article-list-page .article-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background: #F9F6F0;
}
.article-list-page .article-card > div {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.article-list-page .article-card span {
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 700;
}
.article-list-page .article-card h2 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    line-height: 1.45;
}
.article-list-page .article-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
}
.article-page {
    max-width: 1280px;
    margin: 28px auto 0;
    padding: 0 24px;
}
.article-page .breadcrumb {
    padding: 0;
    margin: 0 0 18px;
}
.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
    align-items: start;
}
.article-detail {
    padding: 0;
    overflow: hidden;
}
.article-head {
    padding: 34px 38px 16px;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, #FFFCF6 100%);
    border-bottom: 1px solid var(--line);
}
.article-category {
    display: inline-block;
    color: var(--gold-dark);
    background: var(--gold-pale);
    border: 1px solid rgba(184,154,91,0.3);
    border-radius: 20px;
    padding: 5px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.article-detail h1 {
    max-width: 860px;
    margin: 0 auto 12px;
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 44px);
    color: var(--text-dark);
}
.article-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.article-cover {
    width: min(300px, calc(100% - 76px));
    height: 300px;
    object-fit: cover;
    margin: 28px auto 0;
    border-radius: 16px;
    background: #F9F6F0;
    border: 1px solid var(--line);
}
.article-content {
    padding: 30px 38px 42px;
    font-size: 17px;
    color: var(--text-medium);
}
.article-content p {
    margin: 0 0 18px;
}
.article-content h2 {
    margin: 32px 0 12px;
    color: var(--jade-dark);
    font-family: var(--font-serif);
    font-size: 1.5rem;
}
.article-content h3 {
    margin: 24px 0 10px;
    color: var(--text-dark);
    font-family: var(--font-serif);
}
.article-content ul, .article-content ol {
    padding-left: 22px;
    margin: 0 0 18px;
}
.article-content li {
    margin: 6px 0;
}
.related-panel {
    align-self: start;
    position: sticky;
    top: 96px;
    padding: 20px;
}
.related-panel h2 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}
.article-extra-section {
    margin-top: 36px;
}
.article-page .consult-block {
    margin-top: 36px;
}
.empty { color: var(--text-muted); }

.site-footer {
    margin-top: 80px;
    background: #3E3123;
    color: #C4B89A;
    padding: 40px 24px;
    text-align: center;
}
.footer-inner {
    max-width: 1280px;
    margin: 0 auto 20px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 28px;
    text-align: left;
}
.footer-inner h2 { color: #fff; font-family: var(--font-serif); font-size: 18px; margin-bottom: 10px; }
.footer-inner p, .footer-inner a { color: #C4B89A; font-size: 0.9rem; }
.footer-inner nav { display: grid; gap: 8px; align-content: start; }
.copyright { font-size: 0.82rem; opacity: 0.7; }

@media (max-width: 1024px) {
    .home-hero-card { flex-direction: column; text-align: center; padding: 40px 24px; }
    .hero-slogan { font-size: 2.2rem; }
    .home-hero-visual { width: 160px; height: 160px; }
}
@media (max-width: 980px) {
    .header-inner { align-items: flex-start; flex-direction: column; }
    .main-nav { justify-content: flex-start; }
    .safe-layout, .two-col-layout, .product-detail, .article-layout { grid-template-columns: 1fr; }
    .detail-content { grid-column: auto; grid-row: auto; }
    .consult-block form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-inner { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 768px) {
    .hero-slogan { font-size: 1.8rem; }
    .home-section-head h2 { font-size: 1.6rem; }
    .home-products-grid, .products-grid, .product-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
    .price-grid, .gift-grid { grid-template-columns: 1fr 1fr; }
    .identify-grid, .home-articles-grid, .articles-grid { grid-template-columns: 1fr; }
    .article-list-page { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .header-cta { width: 100%; justify-content: center; }
    .home-section, .section-wrap, .page-shell, .product-page, .home-hero { padding: 0 16px; }
    .article-page { padding: 0 16px; }
    .article-head { padding: 26px 20px 14px; }
    .article-cover { width: calc(100% - 32px); margin: 20px 16px 0; }
    .article-content { padding: 24px 20px 32px; font-size: 16px; }
    .home-hero-card { padding: 28px 20px; }
    .home-products-grid, .products-grid, .product-grid, .price-grid, .gift-grid, .list-grid, .compact-grid, .article-grid, .spec-grid, .consult-block form { grid-template-columns: 1fr; }
    .article-list-page { grid-template-columns: 1fr; }
    .detail-info .consult-block form { grid-template-columns: 1fr; }
    .section-head { align-items: flex-start; flex-direction: column; }
}
