:root {
    --lime: #BFFF00;
    --burgundy: #800020;
    --cream: #FDFBF5;
    --black: #1a1a1a;
    --white: #ffffff;
}

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

body {
    background-color: var(--cream);
    color: var(--burgundy);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    line-height: 1.3;
}

h1, h2, h3 {
    font-family: 'Archivo Black', sans-serif;
    text-transform: uppercase;
}

main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 5vh;
}

.hero-bg-text {
    position: absolute;
    top: 5%;
    right: -2%;
    font-family: 'Archivo Black', sans-serif;
    font-size: 18vw;
    color: var(--lime);
    z-index: -1;
    opacity: 0.6;
    line-height: 0.8;
    pointer-events: none;
    text-align: right;
}

.hero-image-wrap {
    position: absolute;
    top: 15%;
    left: 0;
    width: 40vw;
    max-width: 500px;
    z-index: 1;
    border: 10px solid var(--burgundy);
    box-shadow: 20px 20px 0px var(--lime);
}

.hero-img {
    width: 100%;
    display: block;
    filter: grayscale(100%) contrast(120%);
}

.headline {
    font-size: clamp(4rem, 15vw, 12rem);
    line-height: 0.85;
    margin-bottom: 2rem;
    color: var(--burgundy);
    z-index: 2;
    position: relative;
    left: -2rem;
    text-shadow: 12px 12px 0px var(--lime);
}

.subheadline {
    font-size: 1.5rem;
    max-width: 600px;
    font-weight: 700;
    background: var(--lime);
    padding: 2rem;
    border: 5px solid var(--burgundy);
    box-shadow: 15px 15px 0px var(--burgundy);
    z-index: 3;
    position: relative;
    margin-left: 2rem;
}

/* Starter Kit Section */
.starter-kit {
    margin: 15rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.kit-card {
    background: var(--lime);
    border: 6px solid var(--burgundy);
    padding: 4rem;
    position: relative;
    box-shadow: 30px 30px 0px var(--burgundy);
    transform: rotate(-2deg);
    z-index: 2;
}

.badge {
    position: absolute;
    top: -30px;
    right: -30px;
    background: var(--burgundy);
    color: var(--lime);
    font-family: 'Archivo Black', sans-serif;
    padding: 1.5rem;
    transform: rotate(15deg);
    border: 4px solid var(--black);
    font-size: 1.2rem;
}

.kit-title {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.kit-desc {
    font-weight: 900;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.kit-list {
    list-style: none;
    margin-bottom: 3rem;
}

.kit-list li {
    margin-bottom: 1rem;
    font-weight: 700;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.kit-list li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--burgundy);
}

.addon {
    font-weight: 900;
    font-style: italic;
    margin-bottom: 2rem;
    text-decoration: underline;
    font-size: 1.2rem;
}

.pricing {
    display: flex;
    align-items: baseline;
    gap: 2rem;
}

.old-price {
    text-decoration: line-through;
    font-size: 2rem;
    opacity: 0.7;
}

.new-price {
    font-family: 'Archivo Black', sans-serif;
    font-size: 6rem;
    line-height: 1;
}

.kit-accent-img {
    width: 100%;
    max-width: 600px;
    border: 10px solid var(--burgundy);
    transform: rotate(3deg);
    box-shadow: -20px 20px 0px var(--lime);
    z-index: 1;
}

.kit-accent-img img {
    width: 100%;
    display: block;
    filter: grayscale(100%);
}

/* A La Carte Section */
.alacarte {
    margin: 15rem -2rem;
}

.section-title {
    font-size: clamp(4rem, 10vw, 8rem);
    margin-bottom: 4rem;
    text-align: center;
    color: var(--black);
    -webkit-text-stroke: 3px var(--burgundy);
    color: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 0;
    border: 6px solid var(--burgundy);
}

.service-item {
    border: 3px solid var(--burgundy);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 900;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    background: var(--cream);
}

.service-item:hover {
    background: var(--lime);
    transform: translate(-5px, -5px);
    box-shadow: 10px 10px 0px var(--burgundy);
    z-index: 10;
}

.service-price {
    font-family: 'Archivo Black', sans-serif;
    color: var(--black);
}

/* Promo Section */
.promo {
    margin: 15rem 0;
    display: flex;
    justify-content: center;
}

.promo-box {
    background: var(--burgundy);
    color: var(--lime);
    padding: 6rem 2rem;
    text-align: center;
    width: 100%;
    border: 12px solid var(--lime);
    box-shadow: 30px 30px 0px var(--black);
}

.promo-box p {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2rem, 6vw, 5rem);
    line-height: 1;
}

/* Footer */
.footer {
    margin: 15rem 0 8rem;
    text-align: center;
}

.footer-title {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 3rem;
    line-height: 1;
}

.contact-info {
    display: inline-block;
    text-align: left;
    border-left: 15px solid var(--lime);
    padding-left: 2rem;
}

.contact-item {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.contact-item a {
    color: var(--burgundy);
    text-decoration: none;
    border-bottom: 5px solid var(--lime);
}

.note {
    margin-top: 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsiveness */
@media (max-width: 1024px) {
    .starter-kit {
        grid-template-columns: 1fr;
    }
    .kit-accent-img {
        order: -1;
        max-width: 80%;
        margin: 0 auto;
    }
    .hero-image-wrap {
        width: 60vw;
    }
}

@media (max-width: 768px) {
    .hero-bg-text {
        font-size: 30vw;
        top: 0;
    }
    
    .headline {
        font-size: 4rem;
        left: 0;
    }
    
    .subheadline {
        font-size: 1.1rem;
        margin-left: 0;
    }
    
    .hero-image-wrap {
        display: none;
    }
    
    .kit-card {
        transform: none;
        padding: 2rem;
        box-shadow: 15px 15px 0px var(--burgundy);
    }
    
    .new-price {
        font-size: 4rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .promo-box p {
        font-size: 2.5rem;
    }
}
