/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: #ffffff;
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

h2 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: #dd9231;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #000000;
}
h4 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-subtitle {
    font-size: 2.5rem;
    color: #000000;
    max-width: 700px;
    margin: 0 auto;
}
.section-subtitle1 {
    font-size: 2.5rem;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}

.highlight {
    color: #dd9231;
}

/* Buttons */
.btn-primary {
    background-color: #dd9231;
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.btn-primary:hover {
    background-color: #a7957e;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #000000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}
.logo-text2 {
    font-size: 0.75rem;
    font-weight: 700;
    color: #dd9231;
}

.nav-links {
    display: flex;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #dd9231;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #000000 0%, #a3966c 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-tagline {
    color: #dd9231;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    color: #ffffff;
}

.highlight {
    color: #dd9231;
}

.hero-description {
    font-size: 1.125rem;
    max-width: 700px;
    margin-bottom: 32px;
    color: #ffffff;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    align-items: first baseline;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.hero-feature {
    display: flex;
    align-items: first baseline;
    gap: 8px;
    font-size: 0.875rem;
}

.feature-icon {
    font-size: 1.125rem;
}
.btn-primary1 {
    background-color: #dd9231;
    margin-top: 30px;
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.btn-primary1:hover {
    background-color: #a7957e;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: #f9f4ec;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.product-card {
    background:  white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.product-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #dd9231;
    color: rgb(255, 255, 255);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-content {
    padding: 24px;
}

.product-tags {
    color: #dd9231;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 0.875rem;
}

.product-features {
    list-style: none;
    margin-top: 16px;
}

.product-features li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
    color: #000;
}

.product-features li::before {
    content: "✓";
    color: #dd9231;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.product-text{
    color: #000000;
}

.additional-products {
    text-align: center;
    padding: 24px;
    background: #4a2a12;
    border-radius: 16px;
}

/* Who We Serve Section */
.who-we-serve {
    padding: 80px 0;
    background: #16100f;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.audience-card {
    background: #231714;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: transform 0.3s;
}

.audience-card:hover {
    transform: translateY(-4px);
}

.audience-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.audience-card h3 {
    margin-bottom: 16px;
}

.audience-card p {
    margin-bottom: 16px;
    color: #f5e7ce;
}

.audience-card ul {
    list-style: none;
}

.audience-card li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    color: #f5e7ce;
}

.audience-card li::before {
    content: "→";
    color: #dd9231;
    position: absolute;
    left: 0;
}

/* Why Heritage Section - Left Text + Right Image with Floating Stats */
.why-heritage {
    padding: 80px 0;
    background: #f9f4ec;
}

.why-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

/* Left Content Styles */
.why-content {
    padding-right: 20px;
}

.why-content h2 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #dd9231;
}
.why-content h3 {
    font-size: 2.5rem;
    color: #000000;
    max-width: 700px;
    margin: 0 auto;
}

.why-subtitle {
    font-size: 1.125rem;
    color: #dd9231;
    font-weight: 600;
    margin-bottom: 20px;
}

.why-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #967c5a;
    margin-bottom: 40px;
}

/* Features Grid - 2行 x 3列 */
.why-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-feature-card {
    background: #f8fafc;
    padding: 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.why-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.why-feature-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.why-feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #413019;
}

.why-feature-card p {
    font-size: 0.8125rem;
    color: #967c5a;
    line-height: 1.4;
}

/* Right Image with Floating Stats Card */
.why-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px -12px rgba(0,0,0,0.15);
    min-height: 500px;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.why-image:hover img {
    transform: scale(1.02);
}

/* Floating Stats Card - 左下角浮动 */
.image-stats-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(44, 90, 46, 0.95);
    backdrop-filter: blur(8px);
    padding: 20px 28px;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.2);
}

.stats-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.stats-label {
    font-size: 0.75rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-features-grid {
        gap: 20px;
    }
    
    .why-feature-card {
        padding: 16px;
    }
    
    .why-feature-icon {
        font-size: 1.75rem;
    }
}

@media (max-width: 992px) {
    .why-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .why-content {
        padding-right: 0;
        order: 1;
    }
    
    .why-image {
        order: 0;
        min-height: 400px;
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    
    .why-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .why-heritage {
        padding: 60px 0;
    }
    
    .why-content h2 {
        font-size: 2rem;
    }
    
    .why-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .why-feature-card {
        padding: 16px;
    }
    
    .image-stats-card {
        bottom: 16px;
        left: 16px;
        padding: 12px 20px;
    }
    
    .stats-number {
        font-size: 1.5rem;
    }
    
    .stats-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .why-image {
        min-height: 300px;
    }
    
    .image-stats-card {
        padding: 10px 16px;
    }
    
    .stats-number {
        font-size: 1.25rem;
    }
}

/* Our Story Section */
.our-story {
    padding: 80px 0;
    background: #f1eae0;
}

.story-intro {
    font-size: 1.125rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
    color: #dd9231;
}

.story-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.step {
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: 24px;
}

.step-number {
    font-size: 2rem;
    font-weight: 800;
    color: #dd9231;
    opacity: 0.5;
    margin-bottom: 16px;
}

.step h3 {
    margin-bottom: 12px;
}

.step p {
    color: #967c5a;
}

.story-quote {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 32px;
    border-top: 2px solid #e2e8f0;
}

.story-quote p {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 16px;
    color: #413019;
}

.story-quote cite {
    font-style: normal;
    color: #dd9231;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #16100f;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    background: #16100f ;
    border-radius: 32px;
    padding: 48px;
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-info > p {
    margin-bottom: 32px;
    color: #f1eae0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item strong {
    margin-bottom: 4px;
}

.contact-item span:last-child {
    font-size: 0.875rem;
    color: #f1eae0;
}

.contact-form {
    background: #231714;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form h3 {
    margin-bottom: 8px;
}

.form-note {
    font-size: 0.875rem;
    color: #f1eae0;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #f1eae0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dd9231;
}

/* Footer */
.footer {
    background: #362927;
    color: #f1eae0;
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 48px;
    margin-bottom: 48px;
}


.footer-logo p {
    font-size: 0.875rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-column h4 {
    color: #dd9231;
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-column a {
    display: block;
    color: #f1eae0;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #dd9231;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #967c5a;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-stats {
        gap: 24px;
        justify-content: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
}