/* ============================================
   Mike's Food — Warm & Friendly Marketing Site
   Palette: Deep Navy (#1C3A5E) + Warm Gold (#E8B04B)
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #2D3A4A;
    background-color: #FDF6EC;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ---------- Utility ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.center {
    text-align: center;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: 'Lora', serif;
    line-height: 1.3;
    color: #1C3A5E;
}

.section-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #E8B04B;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 600;
    margin-bottom: 20px;
}

.section-sub {
    font-size: 1.1rem;
    color: #5A6B7D;
    max-width: 560px;
    margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn--gold {
    background: #E8B04B;
    color: #1C3A5E;
    border-color: #E8B04B;
}

.btn--gold:hover {
    background: #D49A3A;
    border-color: #D49A3A;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 176, 75, 0.35);
}

.btn--outline {
    background: transparent;
    color: #FDF6EC;
    border-color: rgba(253, 246, 236, 0.6);
}

.btn--outline:hover {
    background: rgba(253, 246, 236, 0.15);
    border-color: #FDF6EC;
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
}

/* ---------- Header ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(28, 58, 94, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(232, 176, 75, 0.15);
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

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

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #FDF6EC;
}

.logo--light {
    color: #FDF6EC;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(253, 246, 236, 0.8);
    transition: color 0.3s ease;
    position: relative;
}

.nav a:not(.btn):hover {
    color: #E8B04B;
}

.nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #E8B04B;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav a:not(.btn):hover::after {
    width: 100%;
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #FDF6EC;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #1C3A5E;
    padding: 120px 0 0;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 20% 50%, rgba(232, 176, 75, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(232, 176, 75, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(253, 246, 236, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #E8B04B;
    margin-bottom: 16px;
}

.hero-headline {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    color: #FDF6EC;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(253, 246, 236, 0.7);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    align-items: center;
}

.stat-number {
    display: block;
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #E8B04B;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(253, 246, 236, 0.5);
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(232, 176, 75, 0.3);
}

/* Hero Image Stack */
.hero-visual {
    position: relative;
}

.hero-image-stack {
    position: relative;
}

.hero-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.hero-img--main {
    width: 100%;
    max-width: 500px;
}

.hero-img--main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.hero-img--secondary {
    position: absolute;
    bottom: -30px;
    left: -40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border: 4px solid #1C3A5E;
}

.hero-img--secondary img {
    width: 280px;
    height: 200px;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #E8B04B;
    color: #1C3A5E;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(232, 176, 75, 0.4);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

/* ---------- About ---------- */
.about {
    padding: 100px 0;
    background: #FDF6EC;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(28, 58, 94, 0.12);
}

.about-img-main img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(28, 58, 94, 0.15);
    border: 5px solid #FDF6EC;
}

.about-img-accent img {
    width: 260px;
    height: 300px;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    top: 30px;
    right: -10px;
    background: #1C3A5E;
    color: #FDF6EC;
    padding: 20px 28px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(28, 58, 94, 0.25);
}

.about-experience .exp-number {
    display: block;
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #E8B04B;
}

.about-experience .exp-label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 4px;
}

.about-content {
    padding: 20px 0;
}

.about-body {
    font-size: 1.05rem;
    color: #5A6B7D;
    line-height: 1.85;
    margin-bottom: 20px;
}

.about-features {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(232, 176, 75, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1C3A5E;
    margin-bottom: 4px;
}

.feature p {
    font-size: 0.9rem;
    color: #5A6B7D;
    line-height: 1.6;
}

/* ---------- Products ---------- */
.products {
    padding: 100px 0;
    background: #F4EAD6;
}

.section-header {
    margin-bottom: 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background: #FDF6EC;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(28, 58, 94, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(28, 58, 94, 0.12);
}

.product-img {
    overflow: hidden;
    height: 220px;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-info {
    padding: 24px 28px 28px;
}

.product-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #E8B04B;
    background: rgba(232, 176, 75, 0.12);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.product-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-info p {
    font-size: 0.9rem;
    color: #5A6B7D;
    line-height: 1.7;
}

/* ---------- Quality ---------- */
.quality {
    padding: 100px 0;
    background: #1C3A5E;
    position: relative;
    overflow: hidden;
}

.quality::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 10% 90%, rgba(232, 176, 75, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 10%, rgba(232, 176, 75, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.quality-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.quality-content .section-title,
.quality-content .section-eyebrow {
    color: #FDF6EC;
}

.quality-body {
    font-size: 1.05rem;
    color: rgba(253, 246, 236, 0.65);
    line-height: 1.85;
    margin-bottom: 40px;
}

.quality-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.quality-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.quality-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(232, 176, 75, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.quality-item h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #FDF6EC;
    margin-bottom: 4px;
}

.quality-item p {
    font-size: 0.9rem;
    color: rgba(253, 246, 236, 0.55);
    line-height: 1.6;
}

.quality-visual {
    position: relative;
}

.quality-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.quality-img-main img {
    width: 100%;
    height: 580px;
    object-fit: cover;
}

.quality-floating-card {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: #FDF6EC;
    color: #1C3A5E;
    padding: 16px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* ---------- Visit ---------- */
.visit {
    padding: 100px 0;
    background: #FDF6EC;
}

.visit-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #1C3A5E;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(28, 58, 94, 0.2);
}

.visit-content {
    padding: 60px 60px 60px 0;
}

.visit-content .section-eyebrow {
    color: #E8B04B;
}

.visit-content .section-title {
    color: #FDF6EC;
}

.visit-body {
    font-size: 1.05rem;
    color: rgba(253, 246, 236, 0.65);
    line-height: 1.85;
    margin-bottom: 40px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.visit-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.visit-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(232, 176, 75, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visit-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(253, 246, 236, 0.5);
    margin-bottom: 2px;
}

.visit-value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #FDF6EC;
}

.visit-value a {
    color: #E8B04B;
    transition: color 0.3s ease;
}

.visit-value a:hover {
    color: #D49A3A;
}

.visit-visual {
    height: 100%;
    min-height: 480px;
}

.visit-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------- Contact ---------- */
.contact {
    padding: 100px 0;
    background: #F4EAD6;
}

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

.contact-info .section-title {
    color: #1C3A5E;
}

.contact-body {
    font-size: 1.05rem;
    color: #5A6B7D;
    line-height: 1.85;
    margin-bottom: 36px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 20px 24px;
    background: #FDF6EC;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 24px rgba(28, 58, 94, 0.1);
}

.contact-method-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(232, 176, 75, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5A6B7D;
    margin-bottom: 2px;
}

.contact-method-value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #1C3A5E;
}

/* Contact Form */
.contact-form-wrapper {
    background: #FDF6EC;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(28, 58, 94, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1C3A5E;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid rgba(28, 58, 94, 0.1);
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: #2D3A4A;
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #E8B04B;
    box-shadow: 0 0 0 4px rgba(232, 176, 75, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #A0AEBF;
}

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

.form-note {
    font-size: 0.8rem;
    color: #5A6B7D;
    text-align: center;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    gap: 16px;
}

.form-success.active {
    display: flex;
}

.success-icon {
    width: 72px;
    height: 72px;
    background: rgba(232, 176, 75, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-success h3 {
    font-size: 1.5rem;
    color: #1C3A5E;
}

.form-success p {
    font-size: 1rem;
    color: #5A6B7D;
}

/* ---------- Footer ---------- */
.footer {
    background: #142A44;
    padding: 60px 0 0;
    color: rgba(253, 246, 236, 0.6);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(253, 246, 236, 0.08);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-top: 16px;
    max-width: 280px;
}

.footer-links h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #E8B04B;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-links li {
    font-size: 0.9rem;
    color: rgba(253, 246, 236, 0.55);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #E8B04B;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8rem;
    color: rgba(253, 246, 236, 0.35);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-content {
        gap: 40px;
    }
    
    .about-grid,
    .quality-layout,
    .contact-grid {
        gap: 48px;
    }
    
    .visit-card {
        grid-template-columns: 1fr;
    }
    
    .visit-content {
        padding: 48px 40px;
    }
    
    .visit-visual {
        min-height: 320px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(28, 58, 94, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        transform: translateY(-120%);
        transition: transform 0.4s ease;
        border-bottom: 1px solid rgba(232, 176, 75, 0.15);
    }
    
    .nav.open {
        transform: translateY(0);
    }
    
    .nav a:not(.btn) {
        font-size: 1rem;
    }
    
    /* Hero */
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 80px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-visual {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-img--main img {
        height: 400px;
    }
    
    .hero-img--secondary {
        left: -10px;
        bottom: -20px;
    }
    
    .hero-img--secondary img {
        width: 200px;
        height: 150px;
    }
    
    .hero-badge {
        right: 0;
        top: -10px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-img-main img {
        height: 360px;
    }
    
    .about-img-accent {
        right: 0;
    }
    
    .about-img-accent img {
        width: 180px;
        height: 220px;
    }
    
    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    
    /* Quality */
    .quality-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .quality-img-main img {
        height: 400px;
    }
    
    .quality-floating-card {
        left: 10px;
        bottom: 20px;
    }
    
    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 28px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-headline {
        font-size: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .visit-content {
        padding: 36px 24px;
    }
    
    .about-experience {
        right: 0;
        top: 20px;
    }
}
