:root {
    --lcw-primary: #0F172A; /* Deep Navy */
    --lcw-secondary: #E2B13C; /* Muted Gold */
    --lcw-bg: #F8FAFC;      /* Slate 50 */
    --lcw-white: #FFFFFF;
    --lcw-text: #334155;    /* Slate 700 */
    --lcw-border: #E2E8F0;
    --lcw-font: 'Inter', sans-serif;
}

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

body {
    font-family: var(--lcw-font);
    color: var(--lcw-text);
    background-color: var(--lcw-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    color: var(--lcw-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

a { text-decoration: none; color: inherit; transition: 0.2s ease; }
ul { list-style: none; }

/* Header */
.lcw-header {
    background: var(--lcw-white);
    border-bottom: 1px solid var(--lcw-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.lcw-nav-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lcw-logo {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--lcw-primary);
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.lcw-logo img { width: 32px; height: 32px; }

.lcw-menu { display: flex; gap: 32px; }
.lcw-menu a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--lcw-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.lcw-menu a:hover { color: var(--lcw-secondary); }

/* Mobile Menu */
.lcw-burger { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--lcw-primary); }
.lcw-mobile-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; width: 100%;
    background: var(--lcw-white);
    border-top: 1px solid var(--lcw-border);
    padding: 20px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.lcw-mobile-nav a { display: block; padding: 15px 0; border-bottom: 1px solid var(--lcw-bg); font-weight: 600; }
.lcw-mobile-nav.active { display: block; }

/* Hero Section */
.lcw-hero {
    background: var(--lcw-white);
    padding: 80px 20px;
    border-bottom: 1px solid var(--lcw-border);
}
.lcw-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.lcw-hero h1 { font-size: 3.5rem; line-height: 1.1; color: var(--lcw-primary); }
.lcw-hero p { font-size: 1.125rem; color: #64748B; margin-bottom: 30px; max-width: 500px; }
.lcw-btn {
    display: inline-block;
    background: var(--lcw-primary);
    color: var(--lcw-white);
    padding: 16px 32px;
    font-weight: 600;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}
.lcw-btn:hover { background: var(--lcw-secondary); color: var(--lcw-primary); }
.lcw-hero-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 2px;
    filter: saturate(0.9);
}

/* Sections */
.lcw-section { padding: 100px 20px; }
.lcw-bg-white { background: var(--lcw-white); }
.lcw-container { max-width: 1200px; margin: 0 auto; }

.lcw-title-center { text-align: center; font-size: 2.5rem; margin-bottom: 20px; position: relative; display: inline-block; width: 100%; }
.lcw-title-center::after {
    content: ''; display: block; width: 60px; height: 3px; background: var(--lcw-secondary); margin: 20px auto 0;
}
.lcw-subtitle { text-align: center; color: #64748B; margin-bottom: 60px; max-width: 700px; margin-left: auto; margin-right: auto; }

/* Grid System */
.lcw-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.lcw-card {
    background: var(--lcw-white);
    padding: 40px;
    border: 1px solid var(--lcw-border);
    transition: 0.3s;
}
.lcw-card:hover { border-color: var(--lcw-secondary); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.lcw-icon { font-size: 2rem; margin-bottom: 20px; display: block; color: var(--lcw-secondary); }
.lcw-card h3 { font-size: 1.25rem; margin-bottom: 15px; }
.lcw-card p { font-size: 0.95rem; color: #64748B; line-height: 1.7; }

/* About Split */
.lcw-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.lcw-split-img { width: 100%; border-radius: 2px; }

/* Form */
.lcw-form-wrap { max-width: 700px; margin: 0 auto; background: var(--lcw-white); padding: 50px; border: 1px solid var(--lcw-border); }
.lcw-group { margin-bottom: 25px; }
.lcw-label { display: block; margin-bottom: 10px; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; color: var(--lcw-text); }
.lcw-input {
    width: 100%; padding: 14px; background: var(--lcw-bg);
    border: 1px solid var(--lcw-border); border-radius: 2px; font-family: inherit;
}
.lcw-input:focus { outline: 1px solid var(--lcw-secondary); background: var(--lcw-white); }
.lcw-submit { width: 100%; border: none; cursor: pointer; }

/* Footer */
.lcw-footer { background: var(--lcw-primary); color: #94A3B8; padding: 80px 20px 20px; font-size: 0.9rem; }
.lcw-footer h4 { color: var(--lcw-white); font-size: 1rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.lcw-footer a { display: block; margin-bottom: 12px; }
.lcw-footer a:hover { color: var(--lcw-secondary); }
.lcw-footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto 60px; }
.lcw-copy { text-align: center; border-top: 1px solid #1E293B; padding-top: 30px; }
.lcw-disclaimer { margin-top: 20px; font-size: 0.8rem; text-align: center; opacity: 0.7; max-width: 800px; margin-left: auto; margin-right: auto; }

/* Cookie */
.lcw-cookie {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: var(--lcw-white); padding: 20px; border-top: 3px solid var(--lcw-secondary);
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1); display: none; z-index: 2000; text-align: center;
}
.lcw-cookie-btn {
    background: var(--lcw-primary); color: var(--lcw-white); border: none;
    padding: 8px 24px; margin-left: 15px; cursor: pointer; font-weight: 600; border-radius: 2px;
}

@media (max-width: 768px) {
    .lcw-menu { display: none; }
    .lcw-burger { display: block; }
    .lcw-hero-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .lcw-hero h1 { font-size: 2.5rem; }
    .lcw-hero-text p { margin-left: auto; margin-right: auto; }
    .lcw-hero-img { height: 300px; order: -1; }
    .lcw-split { grid-template-columns: 1fr; gap: 40px; }
}