/* ================================================
   RESET & BASE
================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #1c1005;
    background: #fffdf7;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ================================================
   LAYOUT
================================================ */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }

/* ================================================
   NAVIGATION
================================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(22, 10, 2, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(240, 180, 41, 0.1);
    padding: 0.9rem 0;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #f0b429;
    text-decoration: none;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: #f0b429; }

/* ================================================
   HAMBURGER BUTTON
================================================ */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 4px;
    flex-shrink: 0;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================
   BUTTONS
================================================ */
.btn {
    display: inline-block;
    padding: 0.875rem 2.25rem;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.btn-primary { background: #c8841a; color: #fff; }
.btn-primary:hover {
    background: #d4922a;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(200,132,26,0.45);
}
.btn-ghost {
    background: transparent;
    color: rgba(255,255,255,0.82);
    border: 1.5px solid rgba(255,255,255,0.28);
}
.btn-ghost:hover {
    border-color: #f0b429;
    color: #f0b429;
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: #c8841a;
    border: 1.5px solid #c8841a;
}
.btn-outline:hover {
    background: #c8841a;
    color: white;
    transform: translateY(-2px);
}

/* ================================================
   HERO  (home page only)
================================================ */
.hero {
    min-height: 100vh;
    background: linear-gradient(150deg, #160a02 0%, #3a1c00 50%, #5a3200 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 1.5rem 6rem;
}
.hero::before {
    content: '';
    position: absolute;
    top: 15%; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(240,180,41,0.13) 0%, transparent 65%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 140px;
    background: linear-gradient(to bottom, transparent, #fffdf7);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(240,180,41,0.12);
    border: 1px solid rgba(240,180,41,0.3);
    color: #f0b429;
    padding: 0.35rem 1.1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2rem;
}
.hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3.5rem, 9vw, 6.5rem);
    line-height: 1.05;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.hero h1 em { color: #f0b429; font-style: italic; }
.hero-tagline {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}
.hero-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.72);
    max-width: 520px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    font-weight: 300;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================================
   PAGE HEADER  (inner pages)
================================================ */
.page-header {
    background: linear-gradient(150deg, #160a02 0%, #3a1c00 55%, #5a3200 100%);
    padding: 9rem 1.5rem 4.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 500px; height: 400px;
    background: radial-gradient(circle, rgba(240,180,41,0.1) 0%, transparent 65%);
    pointer-events: none;
}
.page-header-inner { position: relative; z-index: 1; }
.page-header .section-label { display: block; margin-bottom: 0.75rem; }
.page-header h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: white;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}
.page-header p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.68);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.75;
    font-weight: 300;
}

/* ================================================
   TRUST BAR
================================================ */
.trust-bar { background: #1c1005; padding: 1.1rem 0; }
.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    font-weight: 500;
}
.trust-item .ti-icon { color: #f0b429; font-size: 1rem; }

/* ================================================
   SECTIONS - shared
================================================ */
section { padding: 6rem 0; }
.section-label {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #c8841a;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: block;
}
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: #1c1005;
}
.section-text {
    font-size: 1.05rem;
    color: #5a3e20;
    line-height: 1.8;
    max-width: 560px;
}

/* ================================================
   ABOUT
================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
    margin-top: 2.25rem;
}
.stat-card {
    background: #fdf3e3;
    border-radius: 12px;
    padding: 1.4rem 1.25rem;
    border-left: 3px solid #c8841a;
}
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #c8841a;
    line-height: 1;
    margin-bottom: 0.3rem;
}
.stat-label { font-size: 0.78rem; color: #6a4a20; font-weight: 500; line-height: 1.35; }
.about-visual {
    background: linear-gradient(135deg, #3a1c00, #7a4f00);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    color: white;
    text-align: center;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.about-visual::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 60% 35%, rgba(240,180,41,0.18) 0%, transparent 60%);
}
.about-visual-emoji { font-size: 3.5rem; margin-bottom: 1.25rem; position: relative; }
.about-visual-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    color: #f0b429;
    margin-bottom: 0.75rem;
    position: relative;
}
.about-visual-text {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    max-width: 280px;
    position: relative;
    margin-bottom: 1.75rem;
}
.flora-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    justify-content: center;
    position: relative;
}
.flora-tag {
    background: rgba(240,180,41,0.14);
    border: 1px solid rgba(240,180,41,0.28);
    color: #f0b429;
    padding: 0.2rem 0.7rem;
    border-radius: 100px;
    font-size: 0.77rem;
    font-weight: 500;
}
.about-teaser-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #c8841a;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: gap 0.2s;
}
.about-teaser-link:hover { gap: 0.7rem; }

/* ================================================
   PRODUCTS
================================================ */
.products-header { text-align: center; margin-bottom: 3.5rem; }
.products-header .section-text { margin: 0 auto; }
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.product-card {
    background: white;
    border-radius: 16px;
    padding: 2.25rem;
    box-shadow: 0 2px 20px rgba(60,30,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.product-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c8841a, #f0b429);
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(60,30,0,0.12);
}
.product-icon { font-size: 2.5rem; margin-bottom: 1.25rem; display: block; }
.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: #1c1005;
    margin-bottom: 0.75rem;
}
.product-desc {
    font-size: 0.92rem;
    color: #5a3e20;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}
.product-badge {
    display: inline-block;
    background: #fdf3e3;
    color: #c8841a;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    padding: 0.2rem 0.7rem;
    border-radius: 100px;
    text-transform: uppercase;
}

/* ================================================
   WHY RAW
================================================ */
.why-raw-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feature-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, #c8841a, #f0b429);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.feature-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
    color: #1c1005;
}
.feature-content p { font-size: 0.88rem; color: #5a3e20; line-height: 1.65; }
.fact-box {
    background: linear-gradient(150deg, #3a1c00, #5a3200);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    color: white;
    text-align: center;
}
.fact-box-icon { font-size: 3.5rem; margin-bottom: 1.5rem; }
.fact-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #f0b429;
    margin-bottom: 1.5rem;
}
.fact-items { display: flex; flex-direction: column; gap: 0.9rem; }
.fact-item {
    background: rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    text-align: left;
}
.fact-item-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    color: #f0b429;
    line-height: 1;
    margin-bottom: 0.2rem;
}
.fact-item-label { font-size: 0.78rem; color: rgba(255,255,255,0.65); }

/* ================================================
   CONTACT FORM
================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    gap: 4rem;
    align-items: start;
}
.contact-info { padding-top: 0.5rem; }
.contact-details { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; }
.contact-detail-icon {
    width: 40px; height: 40px;
    background: #c8841a;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}
.contact-detail-text strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #1c1005;
    margin-bottom: 0.2rem;
}
.contact-detail-text span { font-size: 0.9rem; color: #5a3e20; line-height: 1.55; }
.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 2.75rem;
    box-shadow: 0 4px 32px rgba(60,30,0,0.08);
}
.contact-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1c1005;
    margin-bottom: 1.75rem;
}
.alert {
    padding: 0.9rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.88rem;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.alert-success { background: #f0fdf4; border: 1px solid #86efac; color: #15803d; }
.alert-error   { background: #fef2f2; border: 1px solid #fca5a5; color: #dc2626; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1c1005;
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e5d4b8;
    border-radius: 8px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.925rem;
    color: #1c1005;
    background: #fffdf7;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
}
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c8841a' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #c8841a;
    box-shadow: 0 0 0 3px rgba(200,132,26,0.12);
}
.form-group textarea { min-height: 145px; resize: vertical; line-height: 1.6; }
.honeypot { display: none !important; visibility: hidden; }
.btn-submit {
    width: 100%;
    padding: 0.95rem;
    background: linear-gradient(135deg, #c8841a, #d99420);
    color: white;
    border: none;
    border-radius: 100px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.03em;
    margin-top: 0.5rem;
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(200,132,26,0.42);
    background: linear-gradient(135deg, #d4922a, #e0a030);
}
.btn-submit:active { transform: translateY(0); }
.form-privacy {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.74rem;
    color: #9a7050;
}

/* ================================================
   CTA SECTION
================================================ */
.section-cta {
    background: linear-gradient(150deg, #160a02 0%, #3a1c00 55%, #5a3200 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.section-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 400px;
    background: radial-gradient(circle, rgba(240,180,41,0.1) 0%, transparent 65%);
    pointer-events: none;
}
.section-cta-inner { position: relative; z-index: 1; }
.section-cta .section-label { color: rgba(240,180,41,0.75); }
.section-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.section-cta p {
    color: rgba(255,255,255,0.65);
    font-size: 1.05rem;
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

/* ================================================
   FOOTER
================================================ */
.footer {
    background: #160a02;
    color: rgba(255,255,255,0.5);
    padding: 3.5rem 0 2rem;
    text-align: center;
}
.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #f0b429;
    margin-bottom: 0.4rem;
    display: block;
}
.footer-tagline {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.3);
}
.footer-nav {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}
.footer-nav a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-nav a:hover { color: #f0b429; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin: 2rem 0; }
.footer-location { margin-bottom: 0.4rem; color: rgba(255,255,255,0.42); font-size: 0.88rem; }
.footer-bottom { font-size: 0.76rem; color: rgba(255,255,255,0.25); }

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 920px) {
    .products-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    /* Nav */
    .nav-toggle { display: flex; }
    .nav-links {
        display: none;
        position: fixed;
        top: 57px; left: 0; right: 0;
        background: rgba(16, 6, 0, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 0.5rem 0 1.25rem;
        border-top: 1px solid rgba(240,180,41,0.12);
        gap: 0;
        z-index: 999;
    }
    .nav-links.open { display: flex; }
    .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
    .nav-links a {
        display: block;
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
        letter-spacing: 0.08em;
    }

    /* Hero */
    .hero { padding: 6rem 1.5rem 4rem; }
    .hero-badge { font-size: 0.65rem; letter-spacing: 0.12em; padding: 0.3rem 0.85rem; white-space: nowrap; }
    .hero-description { font-size: 1rem; }

    /* Page header */
    .page-header { padding: 7rem 1.5rem 3rem; }

    /* Trust bar */
    .trust-bar-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem 1rem;
        justify-items: start;
        padding: 0 0.5rem;
    }
    .trust-bar-inner .trust-item:last-child { grid-column: 1 / -1; justify-self: center; }

    /* Layouts */
    .about-grid,
    .why-raw-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-visual { min-height: 280px; }
    .products-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    section { padding: 4rem 0; }
    .section-cta { padding: 4rem 0; }
    .contact-form-card { padding: 1.75rem; }
    .products-header { text-align: left; }
    .products-header .section-text { margin: 0; }
}
@media (max-width: 480px) {
    .hero { padding: 5.5rem 1.25rem 3.5rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; text-align: center; max-width: 280px; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .fact-box { padding: 2rem 1.5rem; }
    .contact-form-card { padding: 1.5rem; }
}
