/* Lelat Import Inc — Victorian Gothic Revival Design */

:root {
    --gothic-black: #0C0809;
    --gothic-deep: #1A0F14;
    --burgundy: #4A1525;
    --burgundy-mid: #6B2235;
    --wine: #8B2942;
    --brass: #B8954A;
    --brass-light: #D4B56A;
    --brass-muted: rgba(184, 149, 74, 0.15);
    --parchment: #EDE4D3;
    --parchment-light: #F5EFE3;
    --parchment-dark: #D9CEBB;
    --ink: #1C1210;
    --ink-muted: #4A3F38;
    --ink-light: #7A6E65;
    --white: #FAF7F2;
    --radius: 2px;
    --radius-lg: 4px;
    --shadow-sm: 0 2px 8px rgba(12, 8, 9, 0.12);
    --shadow: 0 6px 28px rgba(12, 8, 9, 0.18);
    --shadow-lg: 0 12px 48px rgba(12, 8, 9, 0.25);
    --transition: 0.3s ease;
    --font: "Cormorant Garamond", Georgia, serif;
    --font-display: "Cinzel", Georgia, serif;
    --ornament: "❧";
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 1.05rem;
    color: var(--ink);
    background: var(--parchment-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    background-image:
        radial-gradient(ellipse at 20% 0%, rgba(107, 34, 53, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(184, 149, 74, 0.05) 0%, transparent 45%);
}

.container { width: min(1140px, 92%); margin: 0 auto; }

a { text-decoration: none; color: inherit; transition: color var(--transition); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.2;
    letter-spacing: 0.04em;
    font-weight: 600;
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brass);
    margin-bottom: 0.65rem;
}
.eyebrow.light { color: var(--brass-light); }

/* Ornamental divider utility */
.section-head::after {
    content: "◆ ─── " var(--ornament) " ─── ◆";
    display: block;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--brass);
    letter-spacing: 0.35em;
    opacity: 0.7;
}

/* Top bar */
.top-bar {
    background: var(--gothic-black);
    color: rgba(237, 228, 211, 0.88);
    font-size: 0.82rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--brass);
    box-shadow: inset 0 -1px 0 rgba(184, 149, 74, 0.3);
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-style: italic;
}
.top-links { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.top-links a {
    color: rgba(237, 228, 211, 0.75);
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.04em;
}
.top-links a:hover { color: var(--brass-light); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.65rem;
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.btn-primary {
    background: linear-gradient(180deg, var(--burgundy-mid) 0%, var(--burgundy) 100%);
    color: var(--brass-light);
    border-color: var(--brass);
    box-shadow: inset 0 1px 0 rgba(212, 181, 106, 0.2), var(--shadow-sm);
}
.btn-primary:hover {
    background: linear-gradient(180deg, var(--wine) 0%, var(--burgundy-mid) 100%);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(212, 181, 106, 0.3);
    color: var(--parchment-light);
}
.btn-secondary {
    background: transparent;
    color: var(--parchment);
    border: 1px solid rgba(184, 149, 74, 0.5);
}
.btn-secondary:hover {
    background: rgba(184, 149, 74, 0.1);
    border-color: var(--brass-light);
    color: var(--brass-light);
}
.btn.full { width: 100%; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(26, 15, 20, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--brass);
    box-shadow: var(--shadow-sm);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 82px;
}
.brand { display: flex; align-items: center; gap: 1rem; }
.brand-mark {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--brass-light);
    background: var(--gothic-deep);
    border: 2px solid var(--brass);
    border-radius: var(--radius);
    box-shadow: inset 0 0 12px rgba(0,0,0,0.4);
    position: relative;
}
.brand-mark::before,
.brand-mark::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border: 1px solid var(--brass);
}
.brand-mark::before { top: 3px; left: 3px; border-right: none; border-bottom: none; }
.brand-mark::after { bottom: 3px; right: 3px; border-left: none; border-top: none; }
.brand-text { display: flex; flex-direction: column; }
.brand-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--parchment-light);
    line-height: 1.3;
    letter-spacing: 0.08em;
}
.brand-tagline {
    font-family: var(--font);
    font-size: 0.72rem;
    color: var(--brass);
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-style: italic;
}
.nav-links { display: flex; gap: 1.6rem; }
.nav-links a {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(237, 228, 211, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}
.nav-links a:hover { color: var(--brass-light); }
.nav-cta { padding: 0.55rem 1.15rem; font-size: 0.72rem; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    width: 24px; height: 2px;
    background: var(--brass-light);
    border-radius: 1px;
}

/* Hero */
.hero {
    position: relative;
    padding: 5rem 0 4.5rem;
    background:
        linear-gradient(175deg, var(--gothic-black) 0%, var(--gothic-deep) 40%, var(--burgundy) 100%);
    color: var(--parchment-light);
    overflow: hidden;
}
.hero-stripes {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(184, 149, 74, 0.03) 2px,
            rgba(184, 149, 74, 0.03) 3px
        ),
        radial-gradient(ellipse at 70% 20%, rgba(139, 41, 66, 0.25) 0%, transparent 55%);
    pointer-events: none;
}
.hero-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: repeating-linear-gradient(
        90deg,
        var(--brass) 0px,
        var(--brass) 8px,
        var(--gothic-black) 8px,
        var(--gothic-black) 16px
    );
    opacity: 0.6;
}
.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}
.hero h1 {
    font-size: clamp(2rem, 4.5vw, 2.85rem);
    max-width: 16ch;
    margin-bottom: 0.5rem;
    color: var(--parchment-light);
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.lead {
    color: rgba(237, 228, 211, 0.88);
    font-size: 1.12rem;
    max-width: 58ch;
    margin: 1.1rem 0 1.6rem;
    font-style: italic;
}
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-badge {
    margin-top: 1.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(237, 228, 211, 0.65);
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(184, 149, 74, 0.4);
    border-radius: var(--radius);
    padding: 0.6rem 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}
.hero-badge strong { color: var(--brass-light); }
.hero-panel { display: grid; gap: 0.9rem; }
.stat-card {
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(184, 149, 74, 0.25);
    border-radius: var(--radius-lg);
    padding: 1.35rem 1.5rem;
    position: relative;
    transition: background var(--transition), border-color var(--transition);
}
.stat-card::before {
    content: "◆";
    position: absolute;
    top: 0.65rem;
    right: 0.85rem;
    font-size: 0.5rem;
    color: var(--brass);
    opacity: 0.5;
}
.stat-card:hover {
    background: rgba(0,0,0,0.35);
    border-color: rgba(184, 149, 74, 0.45);
}
.stat-card.accent {
    background: rgba(107, 34, 53, 0.35);
    border-color: rgba(184, 149, 74, 0.4);
}
.stat-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 0.35rem;
    color: var(--brass-light);
}
.stat-card span {
    font-size: 0.88rem;
    opacity: 0.75;
    font-style: italic;
}

/* Trust bar */
.trust-bar {
    background: var(--parchment);
    border-bottom: 1px solid var(--parchment-dark);
    border-top: 1px solid var(--parchment-dark);
    padding: 1rem 0;
}
.trust-inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem 2.5rem;
}
.trust-item {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--burgundy);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}
.trust-item::before {
    content: "◆ ";
    color: var(--brass);
    font-size: 0.55rem;
}

/* Sections */
.section {
    padding: 5rem 0;
    position: relative;
}
.section-alt {
    background: var(--parchment);
    border-top: 1px solid var(--parchment-dark);
    border-bottom: 1px solid var(--parchment-dark);
}
.section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
}
.section-head h2 {
    font-size: clamp(1.65rem, 3.2vw, 2.25rem);
    margin-top: 0.2rem;
    letter-spacing: 0.1em;
    color: var(--burgundy);
}
.section-head p {
    color: var(--ink-muted);
    margin-top: 0.85rem;
    font-size: 1.08rem;
    font-style: italic;
}

.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: var(--parchment-light);
    border: 1px solid var(--parchment-dark);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.card::before {
    content: "";
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(184, 149, 74, 0.2);
    border-radius: 1px;
    pointer-events: none;
}
.card:hover {
    box-shadow: var(--shadow);
    border-color: var(--brass);
    transform: translateY(-3px);
}
.icon-wrap {
    width: 52px; height: 52px;
    display: grid; place-items: center;
    background: var(--gothic-deep);
    border: 1px solid var(--brass);
    border-radius: var(--radius);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.3);
}
.product h3 {
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--burgundy);
}
.product p { color: var(--ink-muted); font-size: 0.98rem; }

/* About */
.about-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: start; }
.about-copy h2 {
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    color: var(--burgundy);
}
.about-copy p { color: var(--ink-muted); margin-bottom: 0.9rem; }
.check-list { list-style: none; margin-top: 1.2rem; display: grid; gap: 0.65rem; }
.check-list li {
    position: relative;
    padding-left: 1.75rem;
    font-weight: 600;
    font-size: 1rem;
}
.check-list li::before {
    content: "❧";
    position: absolute; left: 0;
    color: var(--brass);
    font-size: 0.85rem;
    top: 0.1rem;
}
.about-info { display: grid; gap: 0.9rem; }
.info-block {
    background: var(--parchment-light);
    border: 1px solid var(--parchment-dark);
    border-left: 3px solid var(--brass);
    border-radius: var(--radius-lg);
    padding: 1.2rem 1.4rem;
    box-shadow: var(--shadow-sm);
}
.info-block h4 {
    font-family: var(--font-display);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--burgundy);
    margin-bottom: 0.4rem;
    font-weight: 700;
}
.info-block p { font-weight: 500; font-size: 0.98rem; line-height: 1.6; }
.info-block a { color: var(--wine); font-weight: 600; }
.info-block a:hover { color: var(--brass); }

/* Features */
.feature { position: relative; }
.feature-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--parchment-dark);
    line-height: 1;
    margin-bottom: 0.7rem;
}
.feature.featured {
    background: linear-gradient(165deg, var(--gothic-deep) 0%, var(--burgundy) 100%);
    color: var(--parchment-light);
    border-color: var(--brass);
}
.feature.featured::before { border-color: rgba(184, 149, 74, 0.35); }
.feature.featured .feature-num { color: rgba(184, 149, 74, 0.3); }
.feature.featured p { color: rgba(237, 228, 211, 0.82); }
.feature h3 {
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
    color: var(--burgundy);
}
.feature.featured h3 { color: var(--brass-light); }
.feature p { color: var(--ink-muted); font-size: 0.98rem; }

/* Industries */
.industry { text-align: center; padding: 1.5rem; }
.industry .icon-wrap { margin: 0 auto 0.9rem; }
.industry h3 {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--burgundy);
}

/* Team */
.member { text-align: center; }
.avatar {
    width: 76px; height: 76px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: grid; place-items: center;
    background: var(--gothic-deep);
    color: var(--brass-light);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    border: 2px solid var(--brass);
    box-shadow: inset 0 0 12px rgba(0,0,0,0.4), var(--shadow-sm);
}
.member h3 {
    font-size: 1rem;
    letter-spacing: 0.06em;
    color: var(--burgundy);
}
.member p {
    color: var(--ink-muted);
    font-size: 0.92rem;
    margin-top: 0.2rem;
    font-weight: 500;
    font-style: italic;
}

/* CTA */
.cta {
    background:
        linear-gradient(175deg, var(--gothic-black) 0%, var(--gothic-deep) 50%, var(--burgundy) 100%);
    color: var(--parchment-light);
    border-top: 3px solid var(--brass);
}
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.cta-copy h2 {
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    letter-spacing: 0.08em;
    margin-top: 0.3rem;
    color: var(--parchment-light);
}
.cta-copy p { color: rgba(237, 228, 211, 0.78); margin-top: 0.75rem; font-style: italic; }
.contact-info { list-style: none; margin-top: 1.6rem; display: grid; gap: 0.95rem; }
.contact-info li { font-size: 0.95rem; }
.contact-info strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--brass);
    margin-bottom: 0.2rem;
    font-weight: 700;
}
.contact-info a { color: var(--brass-light); font-weight: 600; }
.contact-info a:hover { color: var(--parchment-light); }
.contact-form {
    background: var(--parchment-light);
    border: 2px solid var(--brass);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: grid;
    gap: 0.95rem;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.contact-form::before {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(184, 149, 74, 0.25);
    pointer-events: none;
}
.contact-form h3 {
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 0.2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.95rem; }
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--parchment-dark);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.98rem;
    color: var(--ink);
    background: var(--parchment);
    resize: vertical;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--brass);
    box-shadow: 0 0 0 2px rgba(184, 149, 74, 0.2);
    background: var(--parchment-light);
}
.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.78rem;
    color: var(--ink-muted);
    line-height: 1.5;
    cursor: pointer;
}
.privacy-check input { margin-top: 3px; accent-color: var(--burgundy); }
.form-note {
    font-size: 0.88rem;
    color: var(--wine);
    text-align: center;
    min-height: 1.2rem;
    font-weight: 600;
    font-style: italic;
}

/* Safety notice */
.safety-notice {
    background: var(--gothic-deep);
    border-top: 1px solid rgba(184, 149, 74, 0.3);
    border-bottom: 1px solid rgba(184, 149, 74, 0.3);
    padding: 0.9rem 0;
}
.safety-notice p {
    text-align: center;
    font-size: 0.82rem;
    font-weight: 500;
    font-style: italic;
    color: rgba(237, 228, 211, 0.75);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.55;
    letter-spacing: 0.02em;
}

/* Footer & Legal */
.site-footer {
    background: var(--gothic-black);
    color: rgba(237, 228, 211, 0.75);
    padding: 3.5rem 0 0;
    border-top: 3px solid var(--brass);
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.3fr 2fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
}
.footer-brand .brand { margin-bottom: 0.9rem; }
.footer-brand .brand-name { color: var(--parchment-light); }
.footer-brand .brand-tagline { color: var(--brass); }
.footer-brand p {
    color: rgba(237, 228, 211, 0.6);
    max-width: 40ch;
    font-size: 0.95rem;
    line-height: 1.65;
    font-style: italic;
}
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-cols h4 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 0.85rem;
    color: var(--brass-light);
}
.footer-cols a {
    display: block;
    color: rgba(237, 228, 211, 0.55);
    margin-bottom: 0.5rem;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
}
.footer-cols a:hover { color: var(--brass-light); }

.legal-section {
    padding: 2.25rem 0;
    border-top: 1px solid rgba(184, 149, 74, 0.2);
    background: var(--gothic-deep);
}
.legal-section.legal-alt { background: rgba(0,0,0,0.2); }
.legal-section h3 {
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
    color: var(--brass-light);
}
.legal-note {
    font-size: 0.85rem;
    color: rgba(237, 228, 211, 0.5);
    margin-bottom: 1rem;
    font-style: italic;
}
.legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(237, 228, 211, 0.68);
}
.legal-grid a { color: var(--brass-light); }
.legal-section p {
    color: rgba(237, 228, 211, 0.62);
    font-size: 0.92rem;
    max-width: 72ch;
    line-height: 1.75;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(184, 149, 74, 0.2);
    padding: 1.35rem 0 1.6rem;
    font-size: 0.78rem;
    color: rgba(237, 228, 211, 0.4);
    font-family: var(--font-display);
    letter-spacing: 0.08em;
}

/* Mobile nav open state */
.nav-links.open {
    background: var(--gothic-deep);
    border-bottom: 2px solid var(--brass);
}
.nav-links.open a { color: var(--parchment); }

@media (max-width: 900px) {
    .hero-inner, .about-inner, .cta-inner, .footer-inner, .legal-grid { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .nav-links.open {
        display: flex; flex-direction: column;
        position: absolute; top: 82px; left: 0; right: 0;
        padding: 1.35rem 5%;
        gap: 1rem;
        box-shadow: var(--shadow);
    }
    .footer-bottom { flex-direction: column; gap: 0.45rem; text-align: center; }
    .top-bar-inner { justify-content: center; text-align: center; }
    .top-links { justify-content: center; }
}

@media (max-width: 560px) {
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: 1fr; }
    .brand-name { font-size: 0.9rem; }
    .section-head::after { font-size: 0.6rem; letter-spacing: 0.2em; }
}
