/* Cayenne – Bold Heat Design
   Charcoal + fire orange + cream. Sharp, modern, unusual. */

:root {
    --ink: #121110;
    --charcoal: #1C1A19;
    --smoke: #2A2725;
    --ember: #E85D04;
    --flame: #F48C06;
    --heat: #DC2F02;
    --cream: #F7F1E9;
    --sand: #EDE4D7;
    --muted: #9A9188;
    --white: #FFFCFA;
    --radius: 6px;
    --radius-lg: 18px;
    --shadow: 0 20px 50px rgba(0,0,0,0.35);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', system-ui, sans-serif;
    background: var(--ink);
    color: var(--cream);
    line-height: 1.65;
    font-size: 17px;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--flame); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--ember); }

.container {
    width: min(1140px, 92%);
    margin-inline: auto;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(18, 17, 16, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(232, 93, 4, 0.18);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.05rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--cream);
    letter-spacing: -0.02em;
}

.logo-flame {
    color: var(--ember);
    font-size: 1.1rem;
    line-height: 1;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: var(--muted);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--flame);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--cream);
    border-radius: 1px;
    transition: 0.25s;
}

/* Hero */
.hero {
    padding: 5.5rem 0 6rem;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 85% 20%, rgba(232, 93, 4, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(220, 47, 2, 0.12) 0%, transparent 50%),
        var(--ink);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 1.1rem;
}

.hero-content h1 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(3rem, 6.5vw, 4.4rem);
    line-height: 1.05;
    font-weight: 400;
    margin-bottom: 1.3rem;
    color: var(--cream);
}

.hero-content h1 em {
    font-style: italic;
    color: var(--flame);
}

.hero-content p {
    font-size: 1.12rem;
    color: var(--muted);
    margin-bottom: 2.2rem;
    max-width: 36ch;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 1.8rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--ember);
    color: var(--ink);
    box-shadow: 0 8px 28px rgba(232, 93, 4, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--flame);
    color: var(--ink);
    box-shadow: 0 12px 32px rgba(244, 140, 6, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--cream);
    border: 1.5px solid rgba(247, 241, 233, 0.25);
    margin-left: 0.75rem;
}

.btn-ghost:hover {
    border-color: var(--flame);
    color: var(--flame);
}

.hero-visual {
    position: relative;
}

.hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(232, 93, 4, 0.15);
}

.hero-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.hero-tag {
    position: absolute;
    bottom: 1.4rem;
    left: 1.4rem;
    background: var(--ink);
    color: var(--cream);
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border: 1px solid rgba(232, 93, 4, 0.4);
}

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

.section-header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 3.2rem;
}

.section-header .eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 0.8rem;
}

.section-header h2 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(2.1rem, 4.2vw, 2.9rem);
    font-weight: 400;
    margin-bottom: 0.9rem;
    line-height: 1.15;
}

.section-header p {
    color: var(--muted);
    font-size: 1.05rem;
}

/* Feature strip */
.feature-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--charcoal);
    border: 1px solid rgba(232, 93, 4, 0.12);
    border-radius: var(--radius-lg);
    padding: 2rem 1.7rem;
    transition: border-color 0.25s, transform 0.25s;
}

.feature-card:hover {
    border-color: rgba(232, 93, 4, 0.4);
    transform: translateY(-4px);
}

.feature-num {
    font-family: 'Instrument Serif', serif;
    font-size: 2.2rem;
    color: var(--ember);
    margin-bottom: 0.9rem;
    line-height: 1;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.55rem;
}

.feature-card p {
    color: var(--muted);
    font-size: 0.96rem;
}

/* Split */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.8rem;
    align-items: center;
}

.split-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(232, 93, 4, 0.12);
    box-shadow: var(--shadow);
}

.split-image img {
    width: 100%;
    aspect-ratio: 5/4;
    object-fit: cover;
}

.split-content h2 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 2.3rem;
    font-weight: 400;
    margin-bottom: 1.1rem;
    line-height: 1.15;
}

.split-content p {
    color: var(--muted);
    margin-bottom: 1.1rem;
}

.list-fire {
    list-style: none;
    margin: 1.6rem 0 2rem;
}

.list-fire li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.7rem;
    font-weight: 600;
    font-size: 0.98rem;
}

.list-fire li::before {
    content: '▲';
    color: var(--ember);
    font-size: 0.65rem;
    margin-top: 0.45rem;
    flex-shrink: 0;
}

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

.product-card {
    background: var(--charcoal);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(232, 93, 4, 0.1);
    transition: transform 0.25s, border-color 0.25s;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 93, 4, 0.35);
}

.product-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.product-body {
    padding: 1.5rem 1.5rem 1.7rem;
}

.product-heat {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 0.5rem;
}

.product-body h3 {
    font-size: 1.2rem;
    margin-bottom: 0.45rem;
}

.product-body p {
    color: var(--muted);
    font-size: 0.93rem;
    margin-bottom: 1rem;
}

.product-price {
    font-weight: 700;
    color: var(--cream);
    font-size: 1.05rem;
}

/* Recipe cards */
.recipe-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
}

.recipe-card {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    background: var(--charcoal);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(232, 93, 4, 0.1);
    transition: border-color 0.25s;
}

.recipe-card:hover {
    border-color: rgba(232, 93, 4, 0.35);
}

.recipe-card img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
}

.recipe-body {
    padding: 1.6rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recipe-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 0.5rem;
}

.recipe-body h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.recipe-body p {
    color: var(--muted);
    font-size: 0.93rem;
}

/* Stats */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    background: var(--charcoal);
    border: 1px solid rgba(232, 93, 4, 0.15);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.5rem;
    text-align: center;
}

.stat-item strong {
    display: block;
    font-family: 'Instrument Serif', serif;
    font-size: 2.3rem;
    color: var(--flame);
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.stat-item span {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* CTA */
.cta-band {
    background: linear-gradient(135deg, #E85D04 0%, #DC2F02 55%, #9B2226 100%);
    border-radius: var(--radius-lg);
    padding: 3.4rem 2.5rem;
    text-align: center;
    color: var(--ink);
}

.cta-band h2 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 0.7rem;
}

.cta-band p {
    opacity: 0.88;
    margin-bottom: 1.6rem;
    max-width: 420px;
    margin-inline: auto;
    font-weight: 500;
}

.cta-band .btn-primary {
    background: var(--ink);
    color: var(--cream);
    box-shadow: none;
}

.cta-band .btn-primary:hover {
    background: var(--charcoal);
    color: var(--cream);
}

/* Page hero */
.page-hero {
    padding: 4rem 0 3.2rem;
    background:
        radial-gradient(ellipse 70% 80% at 50% 0%, rgba(232, 93, 4, 0.18) 0%, transparent 60%),
        var(--ink);
    text-align: center;
}

.page-hero h1 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(2.4rem, 5vw, 3.3rem);
    font-weight: 400;
    margin-bottom: 0.8rem;
}

.page-hero p {
    color: var(--muted);
    max-width: 520px;
    margin-inline: auto;
    font-size: 1.08rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 2.5rem;
}

.contact-info {
    background: var(--charcoal);
    border: 1px solid rgba(232, 93, 4, 0.12);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
}

.contact-info h3 {
    font-size: 1.35rem;
    margin-bottom: 1.4rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item .icon {
    width: 42px;
    height: 42px;
    background: rgba(232, 93, 4, 0.15);
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: var(--ember);
}

.contact-item strong {
    display: block;
    margin-bottom: 0.2rem;
}

.contact-item a {
    color: var(--muted);
}

.contact-item a:hover {
    color: var(--flame);
}

.contact-form {
    background: var(--charcoal);
    border: 1px solid rgba(232, 93, 4, 0.12);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: var(--sand);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem 1.05rem;
    border: 1.5px solid rgba(247, 241, 233, 0.12);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    background: var(--smoke);
    color: var(--cream);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--ember);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

/* Values / about extras */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: var(--charcoal);
    border-radius: var(--radius-lg);
    padding: 2rem 1.6rem;
    border: 1px solid rgba(232, 93, 4, 0.1);
    text-align: center;
}

.value-card .icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--muted);
    font-size: 0.94rem;
}

/* Footer */
.site-footer {
    background: #0C0B0A;
    color: var(--muted);
    padding-top: 4rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(232, 93, 4, 0.12);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.footer-brand .logo {
    color: var(--cream);
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.95rem;
    max-width: 28ch;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--cream);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.1rem;
}

.footer-links a {
    display: block;
    color: var(--muted);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--flame);
}

.footer-contact p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.footer-contact a {
    color: var(--muted);
}

.footer-contact a:hover {
    color: var(--flame);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 1.3rem 0;
    text-align: center;
    font-size: 0.88rem;
    color: #6A645E;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-grid,
    .split,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .feature-strip,
    .product-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .recipe-grid {
        grid-template-columns: 1fr;
    }

    .recipe-card {
        grid-template-columns: 1fr;
    }

    .recipe-card img {
        min-height: 200px;
        height: 200px;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--charcoal);
        flex-direction: column;
        padding: 1.4rem 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(232, 93, 4, 0.2);
    }

    .main-nav.open { display: flex; }

    .nav-toggle { display: flex; }

    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .btn-ghost {
        margin-left: 0;
        margin-top: 0.7rem;
    }

    .hero-content .btn { display: inline-flex; }
}

@media (max-width: 500px) {
    .stats-bar { grid-template-columns: 1fr; }
}
