@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700&family=Work+Sans:wght@300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark: #1a1a1a;
    --light: #f5f5f5;
    --accent: #d4a574;
    --grey: #757575;
    --border: #e0e0e0;
}

body {
    font-family: 'Work Sans', sans-serif;
    color: var(--dark);
    background: var(--light);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    font-size: 28px;
}

.brand h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--accent);
}

/* Hero */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: #fff;
}

.hero-label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 20px;
    max-width: 500px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-hero {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s;
}

.btn-hero:hover {
    background: #c59563;
    transform: translateY(-2px);
}

/* Story Section */
.story {
    padding: 100px 0;
    background: #fff;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    margin-bottom: 25px;
}

.story-text p {
    font-size: 18px;
    color: var(--grey);
    margin-bottom: 20px;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Features */
.features {
    padding: 100px 0;
    background: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    background: #fff;
    padding: 40px;
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.feature-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--grey);
    font-size: 16px;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: #fff;
}

.products-header {
    text-align: center;
    margin-bottom: 60px;
}

.products-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    margin-bottom: 15px;
}

.products-header p {
    font-size: 18px;
    color: var(--grey);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-item {
    background: var(--light);
    overflow: hidden;
    transition: transform 0.3s;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    margin-bottom: 12px;
}

.product-info p {
    color: var(--grey);
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-info .price {
    display: inline-block;
    font-weight: 600;
    color: var(--accent);
    font-size: 18px;
}

/* Location */
.location {
    padding: 100px 0;
    background: #fff;
}

.location-header {
    text-align: center;
    margin-bottom: 60px;
}

.location-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    margin-bottom: 15px;
}

.location-subtitle {
    font-size: 18px;
    color: var(--grey);
    max-width: 600px;
    margin: 0 auto;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.info-block h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-block h3 i {
    color: var(--accent);
}

.info-block p {
    color: var(--grey);
    font-size: 16px;
    line-height: 1.8;
}

.nearby-list {
    list-style: none;
    padding: 0;
}

.nearby-list li {
    color: var(--grey);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.nearby-list li:last-child {
    border-bottom: none;
}

.location-map {
    height: 500px;
    background: #ddd;
}

.location-map iframe {
    width: 100%;
    height: 100%;
}

/* Gallery */
.gallery {
    padding: 100px 0;
    background: var(--light);
}

.gallery h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    text-align: center;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Contact */
.contact {
    padding: 100px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--grey);
    font-size: 18px;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.contact-details i {
    color: var(--accent);
    width: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid var(--border);
    font-family: inherit;
    font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.btn-submit {
    padding: 15px;
    background: var(--accent);
    color: #fff;
    border: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #c59563;
}

/* Footer */
.footer {
    background: var(--dark);
    color: #fff;
    padding: 50px 0 30px;
    text-align: center;
}

.footer-content {
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.footer-text {
    color: var(--grey);
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s;
}

.footer-socials a:hover {
    background: #c59563;
}

.footer-copy {
    color: var(--grey);
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 40px;
    }

    .story-grid,
    .location-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.tall,
    .gallery-item.wide {
        grid-row: auto;
        grid-column: auto;
    }
}