*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, sans-serif;
    overflow-x: hidden;
    background: #FBF7F2;
    color: #3D3833;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section:nth-child(even) {
    background: #F5F0E8;
}

.section:nth-child(even)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #C88242, #D67548, #8DB0A0);
    opacity: 0.3;
}

/* ===== 导航 ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(251, 247, 242, 0.92);
    backdrop-filter: blur(16px) saturate(1.2);
    border-bottom: 1px solid rgba(200, 130, 66, 0.15);
    transition: box-shadow 0.3s;
}

.site-header:hover {
    box-shadow: 0 2px 30px rgba(200, 130, 66, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.35rem;
    text-decoration: none;
    color: #3D3833;
    letter-spacing: 0.02em;
    transition: opacity 0.2s;
}

.logo:hover {
    opacity: 0.85;
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C88242 0%, #D67548 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    box-shadow: 0 4px 12px rgba(200, 130, 66, 0.25);
    position: relative;
    overflow: hidden;
}

.logo-icon::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    color: #5A544D;
    transition: color 0.25s, transform 0.2s;
    position: relative;
    letter-spacing: 0.01em;
    padding: 4px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #C88242, #D67548);
    transition: width 0.35s ease;
    border-radius: 2px;
}

.main-nav a:hover {
    color: #C88242;
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px !important;
    border-radius: 50px !important;
    color: #fff !important;
    font-weight: 600 !important;
    background: linear-gradient(135deg, #C88242 0%, #D67548 100%) !important;
    box-shadow: 0 4px 16px rgba(200, 130, 66, 0.25);
    transition: transform 0.25s, box-shadow 0.25s !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 130, 66, 0.35) !important;
    color: #fff !important;
}

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(200, 130, 66, 0.08);
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition: background 0.2s;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2.5px;
    background: #3D3833;
    border-radius: 4px;
    transition: 0.3s;
}

.menu-toggle:hover {
    background: rgba(200, 130, 66, 0.15);
}

/* ===== Hero ===== */
.hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding-top: 76px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, #FBF7F2 0%, #F5EDE2 40%, #F0E8DA 100%);
}

.hero::before {
    content: '';
    position: absolute;
    right: -8%;
    top: -10%;
    width: 55%;
    height: 90%;
    background: radial-gradient(ellipse at center, rgba(200, 130, 66, 0.08) 0%, rgba(214, 117, 72, 0.04) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '28';
    position: absolute;
    right: 5%;
    bottom: 5%;
    font-size: 28vw;
    font-weight: 900;
    color: rgba(200, 130, 66, 0.04);
    line-height: 1;
    pointer-events: none;
    letter-spacing: -0.04em;
    font-family: 'Georgia', serif;
}

.hero-content {
    max-width: 720px;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    background: rgba(200, 130, 66, 0.1);
    color: #C88242;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid rgba(200, 130, 66, 0.15);
}

.hero h1 {
    font-size: 3.6rem;
    line-height: 1.15;
    margin-bottom: 18px;
    font-weight: 800;
    color: #2D2925;
    letter-spacing: -0.02em;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, #C88242 0%, #D67548 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    opacity: 0.7;
    max-width: 560px;
    margin-bottom: 36px;
    color: #5A544D;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(61, 56, 51, 0.08);
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== 按钮 ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #C88242 0%, #D67548 100%);
    box-shadow: 0 6px 24px rgba(200, 130, 66, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(200, 130, 66, 0.35);
}

.btn-outline {
    background: transparent;
    border: 2px solid #C88242;
    color: #C88242;
}

.btn-outline:hover {
    background: rgba(200, 130, 66, 0.06);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(200, 130, 66, 0.12);
}

.btn::after {
    content: '→';
    font-size: 1.1em;
    transition: transform 0.3s;
}

.btn:hover::after {
    transform: translateX(4px);
}

.btn-primary::after {
    color: rgba(255, 255, 255, 0.8);
}

.btn-outline::after {
    color: #C88242;
}

/* ===== 标签/标题 ===== */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 14px;
    color: #C88242;
    text-transform: uppercase;
    padding: 4px 0;
    border-bottom: 2px solid rgba(200, 130, 66, 0.2);
}

.section-title {
    font-size: 2.4rem;
    margin-bottom: 16px;
    font-weight: 700;
    color: #2D2925;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.section-desc {
    max-width: 600px;
    opacity: 0.7;
    margin-bottom: 48px;
    color: #5A544D;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ===== 卡片网格 ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 28px;
}

.category-card {
    border-radius: 16px;
    padding: 36px 32px;
    background: #FFFFFF;
    border: 1px solid rgba(200, 130, 66, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C88242, #D67548, #8DB0A0);
    opacity: 0;
    transition: opacity 0.4s;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(61, 56, 51, 0.08);
    border-color: rgba(200, 130, 66, 0.15);
}

.category-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
    background: rgba(200, 130, 66, 0.08);
    color: #C88242;
    transition: all 0.3s;
}

.category-card:hover .card-icon {
    background: linear-gradient(135deg, #C88242 0%, #D67548 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(200, 130, 66, 0.2);
}

.card-link {
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    color: #C88242;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
    margin-top: 16px;
}

.card-link::after {
    content: '→';
    transition: transform 0.3s;
}

.card-link:hover {
    gap: 12px;
}

.card-link:hover::after {
    transform: translateX(4px);
}

/* ===== 特性块 ===== */
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.feature-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(61, 56, 51, 0.06);
    position: relative;
}

.feature-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(200, 130, 66, 0.06);
    border-radius: 20px;
    pointer-events: none;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-text .section-title {
    margin-top: 0;
}

.feature-list {
    list-style: none;
    margin-top: 24px;
}

.feature-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #4A4540;
    border-bottom: 1px solid rgba(200, 130, 66, 0.06);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '✓';
    font-weight: 700;
    color: #C88242;
    font-size: 1.1rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(200, 130, 66, 0.08);
    flex-shrink: 0;
}

/* ===== 数据条 ===== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    text-align: center;
}

.stat-item {
    padding: 36px 24px;
    border-radius: 16px;
    background: #FFFFFF;
    border: 1px solid rgba(200, 130, 66, 0.06);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C88242, transparent);
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(61, 56, 51, 0.06);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2D2925;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #C88242 0%, #D67548 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-top: 8px;
    color: #5A544D;
    font-weight: 500;
}

/* ===== 内容墙 ===== */
.content-wall {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 28px;
}

.content-wall-item {
    border-radius: 16px;
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid rgba(200, 130, 66, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.content-wall-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(61, 56, 51, 0.08);
    border-color: rgba(200, 130, 66, 0.12);
}

.content-wall-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s;
}

.content-wall-item:hover img {
    transform: scale(1.03);
}

.content-wall-body {
    padding: 24px 28px 28px;
}

.content-wall-body h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #2D2925;
    font-weight: 700;
}

.content-wall-body p {
    font-size: 0.9rem;
    opacity: 0.6;
    color: #5A544D;
    line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(200, 130, 66, 0.08);
    border-radius: 14px;
    margin-bottom: 10px;
    overflow: hidden;
    cursor: pointer;
    background: #FFFFFF;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(61, 56, 51, 0.04);
}

.faq-item .faq-question {
    padding: 20px 24px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #3D3833;
    font-size: 1rem;
    transition: color 0.3s;
}

.faq-item .faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: #C88242;
    transition: transform 0.4s ease;
    font-weight: 300;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-item .faq-answer {
    padding: 0 24px 20px;
    display: none;
    opacity: 0.7;
    color: #5A544D;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    display: block;
    animation: fadeIn 0.4s ease;
}

.faq-item.open .faq-question {
    color: #C88242;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 0.7;
        transform: translateY(0);
    }
}

/* ===== CTA ===== */
.cta-banner {
    padding: 68px 40px;
    text-align: center;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(135deg, #C88242 0%, #B56E3A 30%, #D67548 70%, #C88242 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.cta-banner h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 12px;
    position: relative;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin-bottom: 28px;
    position: relative;
}

.cta-banner .btn-primary {
    background: #fff;
    color: #C88242;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    position: relative;
}

.cta-banner .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.cta-banner .btn-primary::after {
    color: #C88242;
}

/* ===== 页脚 ===== */
.site-footer {
    padding: 64px 0 32px;
    background: #2D2925;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C88242, #D67548, #8DB0A0);
    opacity: 0.4;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 16px;
}

.footer-brand .logo-icon {
    background: linear-gradient(135deg, #C88242, #D67548);
}

.footer-brand p {
    opacity: 0.6;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-col h5 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.25s;
}

.footer-col ul a:hover {
    color: #C88242;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 48px;
    padding-top: 24px;
    text-align: center;
    font-size: 0.82rem;
    opacity: 0.45;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== 工具类 ===== */
.text-accent {
    color: #C88242;
}

.text-center {
    text-align: center;
}

.seo-description {
    max-width: 600px;
    margin: 0 auto 48px;
    opacity: 0.7;
    color: #5A544D;
    line-height: 1.7;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

/* ===== 额外装饰元素 ===== */
.section-label::before {
    content: '◆ ';
    font-size: 0.6rem;
    opacity: 0.5;
}

/* 蜗牛壳螺旋装饰 - 纯CSS */
.spiral-decoration {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(200, 130, 66, 0.08);
    pointer-events: none;
}

.spiral-decoration::before {
    content: '';
    position: absolute;
    inset: 15px;
    border-radius: 50%;
    border: 2px solid rgba(200, 130, 66, 0.06);
}

.spiral-decoration::after {
    content: '';
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    border: 2px solid rgba(200, 130, 66, 0.04);
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero::after {
        font-size: 40vw;
        opacity: 0.03;
    }

    .feature-block {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-item {
        padding: 24px 16px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        background: rgba(251, 247, 242, 0.98);
        backdrop-filter: blur(16px);
        padding: 24px 28px;
        border-bottom: 1px solid rgba(200, 130, 66, 0.1);
        box-shadow: 0 16px 48px rgba(61, 56, 51, 0.06);
        gap: 20px;
    }

    .main-nav.open a {
        font-size: 1rem;
        padding: 8px 0;
    }

    .main-nav.open .nav-cta {
        display: inline-block;
        text-align: center;
        padding: 12px 24px !important;
    }

    .section {
        padding: 64px 0;
    }

    .cta-banner {
        padding: 48px 24px;
    }

    .cta-banner h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 0 16px;
        height: 64px;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 13px 24px;
    }

    .cards-grid,
    .content-wall,
    .stats-bar {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section {
        padding: 48px 0;
    }

    .category-card {
        padding: 28px 24px;
    }

    .content-wall-item img {
        height: 180px;
    }

    .cta-banner {
        padding: 36px 20px;
        border-radius: 12px;
    }

    .cta-banner h2 {
        font-size: 1.3rem;
    }

    .site-footer {
        padding: 40px 0 24px;
    }

    .faq-item .faq-question {
        padding: 16px 18px;
        font-size: 0.92rem;
    }

    .faq-item .faq-answer {
        padding: 0 18px 16px;
    }
}

/* ===== 滚动条美化 ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F5F0E8;
}

::-webkit-scrollbar-thumb {
    background: rgba(200, 130, 66, 0.3);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(200, 130, 66, 0.5);
}

/* ===== 选中文本颜色 ===== */
::selection {
    background: rgba(200, 130, 66, 0.15);
    color: #2D2925;
}

/* ===== 卡片内文本样式补充 ===== */
.category-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2D2925;
    margin-bottom: 10px;
}

.category-card p {
    font-size: 0.9rem;
    opacity: 0.6;
    color: #5A544D;
    line-height: 1.6;
}

/* ===== 品牌色点缀 ===== */
.accent-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #C88242;
    margin: 0 4px;
}

/* ===== 分割装饰 ===== */
.divider-wave {
    width: 100%;
    height: 24px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 24'%3E%3Cpath d='M0,12 C150,0 300,24 450,12 C600,0 750,24 900,12 C1050,0 1200,24 1200,12 L1200,24 L0,24 Z' fill='%23F5F0E8' opacity='0.6'/%3E%3C/svg%3E") repeat-x center;
    background-size: 1200px 24px;
}