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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #e0e0e0;
    background-color: #1a1410;
    line-height: 1.6;
}

/* Navigation */
nav {
    background-color: #2a2016;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 18px;
    font-weight: bold;
    color: #FFD700;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #FFD700;
}

.cta-button {
    background-color: #FFD700;
    color: #1a1410;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #FFC700;
}

/* Section Styles */
.section-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.section-title span {
    color: #FFD700;
}

.section-title.accent span {
    color: #E63946;
}

.section-subtitle {
    font-size: 16px;
    color: #b0b0b0;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 20, 16, 0.7), rgba(26, 20, 16, 0.7)), url('data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 1200 600%22><rect fill=%22%232a2016%22 width=%221200%22 height=%22600%22/></svg>');
    background-size: cover;
    background-position: center;
    padding: 100px 40px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero .highlight {
    color: #E63946;
}

.hero p {
    font-size: 16px;
    color: #b0b0b0;
    margin-bottom: 30px;
    max-width: 600px;
}

/* Service Ribbon */
.service-ribbon {
    background-color: #E63946;
    padding: 20px 40px;
    text-align: center;
}

.service-ribbon ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    list-style: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px auto;
    max-width: 900px;
}

.pricing-card {
    background-color: #2a2016;
    padding: 40px 30px;
    border-radius: 10px;
    border: 2px solid #3a3016;
    text-align: center;
}

.pricing-card.featured {
    background-color: #3a2823;
    border: 3px solid #E63946;
    position: relative;
    top: -10px;
}

.pricing-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #FFD700;
    color: #1a1410;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
}

.pricing-icon {
    font-size: 28px;
    color: #FFD700;
    margin-bottom: 15px;
}

.pricing-card h3 {
    font-size: 24px;
    color: white;
    margin-bottom: 10px;
}

.pricing-amount {
    font-size: 36px;
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 15px;
}

.pricing-card p {
    color: #b0b0b0;
    font-size: 13px;
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 60px auto;
    max-width: 1000px;
}

.portfolio-item {
    border-radius: 10px;
    overflow: hidden;
    background-color: #2a2016;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-link {
    color: #FFD700;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #FFD700;
    padding: 12px 30px;
    display: inline-block;
    border-radius: 5px;
    transition: all 0.3s;
}

.portfolio-link:hover {
    background-color: #FFD700;
    color: #1a1410;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px auto;
    max-width: 1200px;
}

.testimonial-card {
    background-color: #2a2016;
    padding: 30px;
    border-radius: 10px;
    border-top: 3px solid #FFD700;
    text-align: left;
}

.stars {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 14px;
}

.testimonial-card p {
    color: #b0b0b0;
    margin-bottom: 20px;
    font-size: 14px;
}

.testimonial-author {
    color: #FFD700;
    font-weight: 700;
    font-size: 12px;
}

/* FAQ Section */
.faq-container {
    max-width: 700px;
    margin: 60px auto;
    text-align: left;
}

.faq-item {
    background-color: #2a2016;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    border-left: 3px solid #FFD700;
    cursor: pointer;
}

.faq-item summary {
    color: #FFD700;
    font-weight: 700;
    cursor: pointer;
    user-select: none;
}

.faq-item summary:hover {
    color: #FFC700;
}

.faq-item p {
    color: #b0b0b0;
    margin-top: 15px;
    font-size: 14px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px auto;
    max-width: 1200px;
}

.service-card {
    background-color: #2a2016;
    padding: 40px 30px;
    border-radius: 10px;
    border-top: 4px solid #E63946;
    text-align: left;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #FFD700;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service-card p {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.8;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 60px auto;
    max-width: 1200px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    aspect-ratio: 16 / 10;
    background-color: #2a2016;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
}

/* About Section */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

.about-text h2 span {
    color: #E63946;
}

.about-story {
    margin-bottom: 40px;
}

.about-story h3 {
    color: #FFD700;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-story p {
    color: #b0b0b0;
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.value-card {
    background-color: #2a2016;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    border-top: 3px solid #FFD700;
}

.value-card .icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.value-card h4 {
    color: #FFD700;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.value-card p {
    color: #b0b0b0;
    font-size: 13px;
}

/* Contact Section */
.contact-section {
    background-color: #1a1410;
    padding: 80px 40px;
    text-align: center;
}

.contact-container {
    max-width: 900px;
    margin: 60px auto;
    background-color: #3a3016;
    padding: 50px 40px;
    border-radius: 15px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    text-align: left;
}

.contact-item {
    display: flex;
    gap: 15px;
}

.contact-item-icon {
    font-size: 24px;
    color: #FFD700;
    flex-shrink: 0;
}

.contact-item-text h4 {
    color: #FFD700;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-item-text p {
    color: #e0e0e0;
    font-size: 15px;
}

.contact-item-text a {
    color: #e0e0e0;
    text-decoration: none;
}

.contact-item-text a:hover {
    color: #FFD700;
}

/* CTA Section */
.cta-section {
    background-color: #E63946;
    padding: 60px 40px;
    text-align: center;
    margin: 60px 0;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 16px;
    color: white;
    margin-bottom: 30px;
}

.cta-button-dark {
    background-color: #1a1410;
    color: #FFD700;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    border: none;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s;
}

.cta-button-dark:hover {
    background-color: #2a2016;
}

.cta-button-large {
    background-color: #E63946;
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-block;
}

.cta-button-large:hover {
    background-color: #d32f36;
}

/* Footer */
footer {
    background-color: #2a2016;
    padding: 60px 40px 30px;
    border-top: 1px solid #3a3016;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #FFD700;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-section p {
    color: #b0b0b0;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 13px;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #FFD700;
}

.footer-tagline {
    color: #FFD700;
    font-style: italic;
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #3a3016;
    color: #666;
    font-size: 12px;
}

.footer-bottom a {
    color: #FFD700;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.cookie-notice {
    background-color: #2a2016;
    padding: 20px 40px;
    text-align: center;
    font-size: 12px;
    color: #b0b0b0;
    border-top: 1px solid #3a3016;
}

.cookie-notice a {
    color: #FFD700;
}

.got-it-btn {
    background-color: #E63946;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 11px;
    cursor: pointer;
    margin-left: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .hero h1 {
        font-size: 48px;
    }

    .section-title {
        font-size: 36px;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

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

    .contact-info {
        grid-template-columns: 1fr;
    }

    .service-ribbon ul {
        gap: 15px;
        font-size: 11px;
    }
}
