/* --- PURE CSS CONFIGURATION & VARIABLES --- */
:root {
    --brand-deep: #0c3317;
    --brand-medium: #006c37;
    --brand-lime: #73db53;
    --bg-gray-50: #f9fafb;
    --bg-gray-100: #f3f4f6;
    --bg-white: #ffffff;
    --text-dark: #1f2937;
    --text-muted: #4b5563;
    --text-light: #9ca3af;
    --border-color: #e5e7eb;
    --transition-speed: 0.3s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-gray-50);
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

/* --- HEADER & NAVIGATION --- */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--brand-deep);
    border-bottom: 4px solid var(--brand-lime);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.brand-logo-block {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
}

.logo-icon-box {
    width: 48px;
    height: 48px;
    background-color: var(--brand-deep);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    transition: border-color var(--transition-speed);
}

.brand-logo-block:hover .logo-icon-box {
    border-color: var(--brand-lime);
}

.logo-text-title {
    color: var(--bg-white);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    line-height: 1;
}

.logo-text-sub {
    color: var(--brand-lime);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}

nav {
    display: none;
    gap: 2rem;
}

nav a {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.03em;
    transition: color var(--transition-speed);
}

nav a:hover {
    color: var(--brand-lime);
}

.cta-header-btn {
    display: none;
    background-color: var(--brand-lime);
    color: var(--brand-deep);
    padding: 0.625rem 1.25rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

.cta-header-btn:hover {
    background-color: var(--bg-white);
    color: var(--brand-deep);
}

.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--bg-white);
    cursor: pointer;
    padding: 4px;
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--brand-deep), var(--brand-medium));
    color: var(--bg-white);
    padding: 6rem 0;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: radial-gradient(var(--brand-lime) 1px, transparent 1px);
    background-size: 16px 16px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-left {
    text-align: center;
}

.badge-hero {
    display: inline-block;
    background-color: rgba(0, 108, 55, 0.6);
    color: var(--brand-lime);
    border: 1px solid rgba(115, 219, 83, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.hero-left h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-left p {
    color: #d1d5db;
    font-size: 1.125rem;
    font-weight: 300;
    max-width: 42rem;
    margin: 0 auto 2rem auto;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.btn-primary {
    background-color: var(--brand-lime);
    color: var(--brand-deep);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    transition: background-color var(--transition-speed);
    text-align: center;
}

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

.btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.875rem;
    transition: background-color var(--transition-speed);
    text-align: center;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-right {
    display: none;
}

/* --- ABOUT US SECTION --- */
.about-section {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.text-center-wrapper {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-deep);
    letter-spacing: -0.01em;
}

.accent-divider {
    width: 64px;
    height: 4px;
    background-color: var(--brand-lime);
    margin: 1rem auto 2rem auto;
}

.about-quote {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-style: italic;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 4rem;
}

.strengths-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
}

.strength-card {
    background-color: var(--bg-gray-50);
    border-top: 4px solid var(--brand-medium);
    padding: 1.5rem;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.strength-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--brand-deep);
    margin-bottom: 0.5rem;
}

.strength-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* --- LEGACY & SOURCING SECTION --- */
.legacy-section {
    padding: 5rem 0;
    background-color: var(--bg-gray-50);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.legacy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.legacy-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.meta-tag-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--brand-medium);
}

.meta-tag-wrapper svg {
    width: 24px;
    height: 24px;
    color: var(--brand-lime);
}

.meta-tag-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-deep);
}

.legacy-left h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--brand-deep);
    letter-spacing: -0.01em;
}

.legacy-left p {
    color: var(--text-muted);
    font-weight: 300;
}

.legacy-right {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.legacy-right h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-deep);
}

.legacy-right p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.sourcing-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 0.5rem;
}

.sourcing-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-dark);
    font-weight: 500;
}

.bullet-dot {
    width: 8px;
    height: 8px;
    background-color: var(--brand-lime);
    border-radius: 50%;
    flex-shrink: 0;
}

/* --- CONTACT SECTION --- */
.contact-section {
    padding: 5rem 0;
    background-color: var(--bg-gray-100);
}

.contact-intro {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 4rem auto;
}

.contact-intro h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-deep);
}

.contact-intro p {
    color: var(--text-muted);
    margin-top: 0.75rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.info-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.info-card-header {
    background-color: var(--brand-deep);
    padding: 1.5rem;
    color: var(--bg-white);
    border-bottom: 4px solid var(--brand-lime);
}

.info-card-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.info-card-header p {
    color: #d1d5db;
    font-size: 0.875rem;
    margin-top: 4px;
}

.info-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.info-icon-box {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: rgba(12, 51, 23, 0.1);
    color: var(--brand-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-top: 2px;
}

.info-icon-box svg {
    width: 20px;
    height: 20px;
}

.info-details h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
}

.info-details p, .info-details a {
    color: var(--text-dark);
    font-weight: 500;
    margin-top: 2px;
    text-decoration: none;
}

.info-details a:hover {
    text-decoration: underline;
}

.admin-meta-box {
    background-color: var(--bg-gray-50);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #f0f1f3;
}

.admin-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 4px;
}

.admin-meta-box h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
}

.admin-meta-box .designation {
    color: #6b7280;
    font-size: 0.75rem;
    font-weight: 500;
}

.admin-lines {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.admin-lines span {
    font-weight: 500;
    color: var(--text-light);
}

.form-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

@media (min-width: 640px) {
    .form-card { padding: 2rem; }
}

.form-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-deep);
    margin-bottom: 1.5rem;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row-dual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .form-row-dual { grid-template-columns: 1fr 1fr; }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    background-color: var(--bg-gray-50);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-family: inherit;
    color: var(--text-dark);
    outline: none;
    transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--brand-medium);
    box-shadow: 0 0 0 2px rgba(0, 108, 55, 0.1);
}

.form-submit-btn {
    width: 100%;
    background-color: var(--brand-deep);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    padding: 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

.form-submit-btn:hover {
    background-color: var(--brand-medium);
}

/* --- FOOTER FRAME --- */
footer {
    background-color: var(--brand-deep);
    color: #9ca3af;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}

@media (min-width: 640px) {
    .footer-wrapper { flex-direction: row; }
}

.footer-wrapper span {
    color: var(--bg-white);
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-right a {
    color: #9ca3af;
    text-decoration: none;
    transition: color var(--transition-speed);
}

.footer-right a:hover {
    color: var(--brand-lime);
}

/* --- MEDIA QUERIES FOR TABLET/DESKTOP BREAKPOINTS --- */
@media (min-width: 768px) {
    nav { display: flex; }
    .mobile-menu-toggle { display: none; }
    .strengths-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    .cta-header-btn { display: inline-block; }
    .hero-grid { grid-template-columns: repeat(12, 1fr); }
    .hero-left { grid-column: span 7; text-align: left; }
    .hero-left h1 { font-size: 3.5rem; }
    .hero-left p { margin: 0 0 2rem 0; }
    .hero-actions { flex-direction: row; justify-content: flex-start; }
    
    .hero-right { display: block; grid-column: span 5; position: relative; }
    .graphic-container { width: 100%; height: 384px; position: relative; display: flex; align-items: center; justify-content: center; }
    .graphic-bg-box { position: absolute; width: 320px; height: 320px; background-color: rgba(0, 108, 55, 0.4); border-radius: 24px; transform: rotate(12deg); border: 1px solid rgba(115, 219, 83, 0.2); }
    .graphic-fg-box { position: absolute; width: 320px; height: 320px; background-color: var(--brand-deep); border-radius: 24px; border: 2px solid rgba(115, 219, 83, 0.4); padding: 2rem; display: flex; flex-direction: column; justify-content: center; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); }
    .graphic-icon { width: 64px; height: 64px; color: var(--brand-lime); margin-bottom: 1.5rem; }
    .graphic-icon svg { width: 100%; height: 100%; }
    .graphic-fg-box h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
    .graphic-fg-box p { color: #9ca3af; font-size: 0.875rem; }
    
    .legacy-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: repeat(12, 1fr); }
    .info-card { grid-column: span 5; }
    .form-card { grid-column: span 7; }
}