@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Noto+Sans+Sinhala:wght@400;500;600&display=swap');

:root {
    --crimson: #8B0000;
    --gold: #D4AF37;
    --jungle: #004225;
    --parchment: #F5F5DC;
    --text-dark: #1A1A1A;
    --text-muted: #6B6B6B;
    --white: #FFFFFF;
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    --border-radius: 12px;
}

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

body {
    font-family: 'Inter', 'Noto Sans Sinhala', sans-serif;
    color: var(--text-dark);
    background-color: var(--parchment);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--jungle);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography Utilities */
.text-center { text-align: center; }
.text-crimson { color: var(--crimson); }
.text-gold { color: var(--gold); }
.text-jungle { color: var(--jungle); }
.text-muted { color: var(--text-muted); }
.italic { font-style: italic; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--crimson);
    color: var(--white);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--gold);
    color: var(--crimson);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--gold);
    color: var(--text-dark);
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--white);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Pattern Overlay (CSS only) */
.pattern-overlay {
    background-image: radial-gradient(var(--gold) 1px, transparent 1px),
                      radial-gradient(var(--gold) 1px, transparent 1px);
    background-position: 0 0, 25px 25px;
    background-size: 50px 50px;
    opacity: 0.05;
}

/* Nav styles */
.navbar {
    background-color: var(--jungle);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-soft);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-brand span {
    color: var(--crimson);
}
.nav-brand i {
    color: var(--gold);
    font-size: 0.5em;
    vertical-align: middle;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-item a {
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding-bottom: 0.25rem;
}

.nav-item a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--gold);
    transition: var(--transition);
}

.nav-item a:hover::after,
.nav-item a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    background: linear-gradient(135deg, var(--crimson) 0%, var(--jungle) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero .pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    color: var(--white);
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}
.hero-actions .btn-outline {
    color: var(--white);
}

.floating-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 175, 55, 0.5); /* gold */
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Cards */
.card {
    background-color: var(--parchment);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(0,66,37,0.05), rgba(212,175,55,0.1));
    color: var(--text-dark);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.category-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--jungle);
}

.badge {
    background-color: var(--jungle);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-image-container {
    height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    color: rgba(255,255,255,0.8);
    background: linear-gradient(135deg, var(--jungle) 0%, var(--gold) 100%);
    position: relative;
}

.product-image-container[data-category="rice"] { background: linear-gradient(135deg, #A0522D, #F4A460); }
.product-image-container[data-category="spices"] { background: linear-gradient(135deg, var(--crimson), #FF8C00); }
.product-image-container[data-category="frozen"] { background: linear-gradient(135deg, #00BFFF, #1E90FF); }
.product-image-container[data-category="dryfish"] { background: linear-gradient(135deg, #708090, #D3D3D3); }
.product-image-container[data-category="herbal"] { background: linear-gradient(135deg, var(--jungle), #32CD32); }

.product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-category-badge {
    align-self: flex-start;
    margin-bottom: 0.5rem;
    background: rgba(212, 175, 55, 0.2);
    color: var(--jungle);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
}

.product-title-en {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.product-title-si {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.product-variants {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    margin-top: auto;
}

.variant-pill {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: var(--white);
    color: var(--text-muted);
    cursor: default;
}
.variant-pill.active {
    border-color: var(--crimson);
    color: var(--crimson);
    background: rgba(139,0,0,0.05);
}

/* Trust Section */
.trust-section {
    background-color: var(--white);
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-item h3 {
    margin: 1rem 0 0.5rem;
    font-size: 1.25rem;
}

.trust-icon {
    font-size: 2.5rem;
    color: var(--gold);
}

/* Shop Layout */
.shop-layout {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}
.shop-sidebar {
    width: 250px;
    flex-shrink: 0;
}
.shop-main {
    flex-grow: 1;
}

.filter-group {
    margin-bottom: 1.5rem;
}
.filter-group h4 {
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
}
.filter-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    gap: 0.5rem;
    color: var(--text-muted);
    cursor: pointer;
}
.filter-item input[type="radio"],
.filter-item input[type="checkbox"] {
    accent-color: var(--jungle);
}
.search-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    font-family: inherit;
}

/* Single Product */
.product-single {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}
.product-single-image {
    height: 500px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    font-family: 'Playfair Display', serif;
    color: rgba(255,255,255,0.8);
    box-shadow: var(--shadow-hover);
}
.breadcrumb {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
.breadcrumb a {
    color: var(--jungle);
}
.product-single-info h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.product-single-info .si-name {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.product-meta {
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0,0,0,0.05);
}
.product-meta p {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}
.product-meta strong {
    color: var(--text-dark);
}
.variant-selector {
    margin-bottom: 2rem;
}
.variant-options {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}
.variant-radio {
    display: none;
}
.variant-label {
    padding: 0.75rem 1.5rem;
    border: 2px solid #ddd;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}
.variant-radio:checked + .variant-label {
    border-color: var(--jungle);
    background-color: rgba(0,66,37,0.05);
    color: var(--jungle);
}
.inquiry-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: var(--jungle);
    color: var(--white);
    padding: 4rem 0 0;
    margin-top: 4rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}
.footer-brand h2 {
    color: var(--gold);
    font-size: 2rem;
}
.footer-brand p {
    color: rgba(255,255,255,0.7);
    margin-top: 1rem;
}
.footer-links h3, .footer-contact h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 0.75rem;
}
.footer-links a {
    color: rgba(255,255,255,0.7);
}
.footer-links a:hover {
    color: var(--gold);
}
.footer-contact p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
}
.footer-bottom {
    background-color: rgba(0,0,0,0.2);
    padding: 1.5rem 0;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212,175,55,0.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .category-grid, .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--jungle);
        flex-direction: column;
        padding: 1rem;
        text-align: center;
        box-shadow: var(--shadow-soft);
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .category-grid, .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .shop-layout {
        flex-direction: column;
    }
    .shop-sidebar {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .product-single {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .category-grid, .product-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2rem;
    }
}

/* V2 INSPIRED SPECIFIC STYLES appended */
.bg-dark { background: var(--text-dark); }
.text-white { color: var(--white); }
.script-font {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
}

/* Split Hero */
.hero-split {
    min-height: 85vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
}
.hero-left {
    background: var(--parchment);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 4rem;
    position: relative;
    overflow: hidden;
}
.hero-left::after {
    content: '';
    position: absolute; left: -80px; bottom: -100px;
    width: 320px; height: 320px; border-radius: 50%;
    background: var(--gold);
    opacity: 0.15;
}
.hero-right {
    position: relative;
    overflow: hidden;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-img-label {
    position: absolute; bottom: 40px; left: 0;
    background: var(--crimson);
    color: var(--white);
    font-weight: 700; font-size: 1.5rem;
    text-transform: uppercase;
    padding: 16px 36px 16px 28px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
}

/* How it works */
.how-section {
    padding: 6rem 0;
}
.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.how-step {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}
.step-big-num {
    position: absolute; top: -10px; right: 10px;
    font-size: 8rem; font-weight: 900;
    color: rgba(255,255,255,0.05);
    line-height: 1;
}

/* Categories Masonry */
.cats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 250px 250px;
    gap: 0.5rem;
}
.cat {
    position: relative; overflow: hidden;
    border-radius: var(--border-radius);
    display: flex; align-items: flex-end;
    color: var(--white); text-decoration: none;
}
.cat-first { grid-row: span 2; }
.cat-wide { grid-column: span 2; }
.cat img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cat:hover img { transform: scale(1.07); }
.cat-shade {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
    transition: background 0.4s;
}
.cat:hover .cat-shade { background: linear-gradient(to top, rgba(139,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%, transparent 100%); }
.cat-body {
    position: relative; z-index: 1;
    padding: 1.5rem;
}
.cat-cta {
    opacity: 0; transform: translateX(-10px);
    transition: all 0.3s; margin-top: 0.5rem; font-size: 0.8rem; font-weight: 600; color: var(--gold); text-transform: uppercase;
}
.cat:hover .cat-cta { opacity: 1; transform: translateX(0); }

/* About Split */
.about-split {
    display: grid; grid-template-columns: 1fr 1fr;
}
.about-photo { position: relative; overflow: hidden; min-height: 480px; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(139,0,0,0.8), transparent);
    padding: 2rem; color: var(--white);
}
.about-photo-stat { font-size: 4rem; font-weight: 700; line-height: 1; }

.product-image-wrapper {
    position: relative;
    height: 250px; 
    width: 100%;
    overflow: hidden;
}
.real-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.4s ease;
}
.product-card:hover .real-product-image {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .hero-split, .about-split { grid-template-columns: 1fr; }
    .cats { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .cat-first, .cat-wide { grid-row: auto; grid-column: span 2; height: 300px; }
    .cat { height: 250px; }
    .how-steps { grid-template-columns: 1fr; }
}

/* ENHANCED LAYOUT STYLES - appended */
.hero-lg {
    min-height: 95vh;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}
.hero-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    color: var(--gold);
    font-weight: 600;
}
.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}
.hero-text {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}
.hero-decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, rgba(212,175,55,0) 70%);
}
.circle-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
}
.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -150px;
}
.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}
.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--jungle);
}
.btn-jungle {
    background: var(--jungle);
    color: var(--white);
}
.btn-jungle:hover {
    background: rgba(0, 66, 37, 0.9);
}

.bg-white { background: var(--white); }
.bg-light { background: #faf9f6; }

.section-eyebrow {
    font-family: 'Inter', sans-serif;
    color: var(--crimson);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.section-divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto;
}
.section-header-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}
.section-header-split .section-title {
    margin-bottom: 0;
}

/* Enhanced Category Cards */
.category-card-premium {
    position: relative;
    overflow: hidden;
    padding: 3rem 1.5rem;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}
.category-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(0, 66, 37, 0.05);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.category-card-premium:hover .category-icon-wrapper {
    background: var(--crimson);
    color: var(--white);
    transform: scale(1.1);
}
.category-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.category-hover-pill {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--jungle);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    opacity: 0;
    transition: var(--transition);
    white-space: nowrap;
}
.category-card-premium:hover .category-hover-pill {
    bottom: 1rem;
    opacity: 1;
}

/* Enhanced Product Cards */
.product-card {
    height: 100%;
}
.product-image-container {
    position: relative;
}
.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--crimson);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-inquire {
    width: 100%;
}

/* Heritage Block */
.heritage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.heritage-image {
    position: relative;
    border-radius: 12px;
    padding: 1rem;
    background: rgba(212,175,55,0.1);
}
.image-placeholder {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--jungle) 0%, #002213 100%);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}
.image-placeholder h2 {
    color: var(--gold);
    font-size: 3rem;
    line-height: 1;
}
.image-placeholder p {
    margin-top: 1rem;
    letter-spacing: 2px;
    font-weight: 300;
}
.trust-icons-inline {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(rgba(139, 0, 0, 0.9), rgba(139, 0, 0, 0.9));
    color: var(--white);
    text-align: center;
    padding: 6rem 1rem;
}
.promo-content {
    max-width: 700px;
    margin: 0 auto;
}
.promo-title {
    color: var(--gold);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}
.promo-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--jungle);
    padding: 4rem 0;
    margin-top: 4rem;
}
.newsletter-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: rgba(255,255,255,0.05);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(212,175,55,0.2);
}
.newsletter-info h3 {
    color: var(--gold);
    font-size: 1.8rem;
}
.newsletter-info p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
}
.newsletter-form form {
    display: flex;
    gap: 1rem;
}
.newsletter-form input {
    flex-grow: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: unset; /* override defaults */
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    font-size: 1rem;
    background: rgba(255,255,255,0.9);
}
.newsletter-form button {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 1rem 2rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .section-header-split {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .heritage-grid {
        grid-template-columns: 1fr;
    }
    .newsletter-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    .newsletter-form form {
        flex-direction: column;
    }
    .newsletter-form input, .newsletter-form button {
        border-radius: 8px;
        width: 100%;
    }
    .hero-title {
        font-size: 3rem;
    }
}
