
body {
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, monospace;
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.4;
}

* {
    box-sizing: border-box;
}

.hero-craft {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('/img/bg.png');
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid #c4712b;
}

.hero-craft::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 30px;
    border: 1px solid #c4712b;
    background: rgba(18, 18, 18, 0.8);
}

.hero-content h1 {
    font-size: 3rem;
    color: #c4712b;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.hero-content p {
    margin: 10px 0 0 0;
    font-size: 1.1rem;
    letter-spacing: 2px;
}
.hero-content img {
    width: 180px;
    height: auto;
    margin-bottom: 15px;
}

.lots-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.lot-card {
    border: 1px solid #333;
    padding: 25px;
    background-color: #1a1a1a;
    transition: border-color 0.3s ease;
}

.lot-card:hover {
    border-color: #c4712b;
}

.lot-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #c4712b;
    margin-bottom: 20px;
    display: block;
}

.lot-title {
    color: #c4712b;
    font-weight: bold;
    font-size: 1.4rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.lot-card p {
    margin: 0 0 15px 0;
    font-size: 0.95rem;
}

.lot-notes {
    font-size: 0.9rem;
    color: #888;
    text-transform: lowercase;
    font-style: italic;
}

.philosophy-section {
    padding: 60px 5%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    border-top: 1px solid #333;
}

.philosophy-section h2 {
    color: #c4712b;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    font-size: 2rem;
}

.philosophy-section p {
    margin: 0;
    font-size: 1rem;
    color: #b0b0b0;
}

.full-width-map {
    width: 100%;
    height: 500px;
    filter: grayscale(1) contrast(1.2) invert(0.9);
    border-top: 2px solid #c4712b;
}

.full-width-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

footer {
    padding: 50px 5%;
    background: #0a0a0a;
    font-size: 0.85rem;
    color: #666;
    border-top: 1px solid #222;
}

footer p {
    margin: 0 0 10px 0;
}

footer p:last-child {
    margin: 0;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-craft {
        height: 60vh;
    }
}


.why-us-section {
    padding: 80px 5%;
    border-top: 1px solid #333;
    background-color: #0d0d0d;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-title {
    color: #c4712b;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 50px 0;
    font-size: 2.2rem;
    letter-spacing: 2px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.why-us-item {
    display: flex;
    align-items: flex-start;
    border: 1px solid #222;
    padding: 20px;
    transition: background-color 0.3s ease;
}

.why-us-item:hover {
    background-color: #1a1a1a;
    border-color: #333;
}

.why-us-icon {
    font-size: 2rem;
    font-weight: bold;
    color: #c4712b;
    margin-right: 20px;
    margin-top: -5px;
    font-family: Arial, sans-serif;
}

.why-us-text h3 {
    color: #fff;
    margin: 0 0 10px 0;
    font-size: 1.3rem;
    text-transform: uppercase;
}

.why-us-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #b0b0b0;
}

@media (max-width: 768px) {
    .why-us-title {
        font-size: 1.8rem;
    }
    .why-us-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .why-us-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}