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

body {
    font-family: Georgia, serif;
    background: #1a1410;
    color: #d4c5b0;
}

nav {
    background: #2a2420;
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="600" height="600"><filter id="n1"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="8" seed="3" /></filter><filter id="n2"><feTurbulence type="turbulence" baseFrequency="0.05 0.15" numOctaves="6" seed="7" /></filter><filter id="n3"><feTurbulence type="fractalNoise" baseFrequency="2.5 1.8" numOctaves="4" seed="11" /></filter><rect width="600" height="600" fill="%232a2420"/><rect width="600" height="600" filter="url(%23n2)" opacity="0.25"/><rect width="600" height="600" filter="url(%23n1)" opacity="0.15"/><rect width="600" height="600" filter="url(%23n3)" opacity="0.08"/></svg>'),
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px),
        linear-gradient(180deg, rgba(60, 50, 40, 0.3) 0%, rgba(0, 0, 0, 0.4) 100%);
    background-size: 250px 250px, 4px 4px, 100%;
    background-blend-mode: multiply, overlay, normal;
    border-bottom: 2px solid rgba(80, 70, 60, 0.5);
    border-top: 1px solid rgba(100, 85, 70, 0.2);
    padding: 1rem 0;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 4px 12px rgba(0, 0, 0, 0.8);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    z-index: 1001;
}

.gear {
    animation: rotate 50s linear infinite;
    filter: 
        drop-shadow(0 2px 1px rgba(0, 0, 0, 0.4))
        drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3))
        drop-shadow(0 0 15px rgba(255, 179, 71, 0.4));
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-text {
    font-family: 'Cormorant SC', 'Cinzel', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 8px;
    color: #ffb347;
    text-transform: uppercase;
    text-shadow: 
        0 0.5px 0 #ffe4b5,
        0 1px 0 #ffcc80,
        0 1.5px 0 #ff9f1c,
        0 2px 0 #e68a00,
        0 2.5px 0 #d4860f,
        0 3px 0 #c47a0d,
        0 3.5px 1px rgba(0, 0, 0, 0.15),
        0 5px 2px rgba(0, 0, 0, 0.25),
        0 8px 6px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(255, 179, 71, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: #ffb347;
    transition: all 0.3s;
    box-shadow: 0 0 8px rgba(255, 179, 71, 0.4);
}

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

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

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

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #ffb347;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s, text-shadow 0.3s;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.nav-links a:hover {
    color: #ffe4b5;
    text-shadow: 0 0 12px rgba(255, 179, 71, 0.6);
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .logo {
        gap: 1rem;
    }
    
    .gear {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.1rem;
        letter-spacing: 4px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 400px;
        background: #2a2420;
        background-image: 
            url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="600" height="600"><filter id="n1"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="8" seed="3" /></filter><filter id="n2"><feTurbulence type="turbulence" baseFrequency="0.05 0.15" numOctaves="6" seed="7" /></filter><filter id="n3"><feTurbulence type="fractalNoise" baseFrequency="2.5 1.8" numOctaves="4" seed="11" /></filter><rect width="600" height="600" fill="%232a2420"/><rect width="600" height="600" filter="url(%23n2)" opacity="0.25"/><rect width="600" height="600" filter="url(%23n1)" opacity="0.15"/><rect width="600" height="600" filter="url(%23n3)" opacity="0.08"/></svg>');
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.8);
        border-left: 2px solid rgba(255, 179, 71, 0.3);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.5rem;
        font-family: 'Cormorant SC', serif;
        letter-spacing: 3px;
    }
}

#hero {
    height: 80vh;
    background: url('../del/antikethera_atmosphere.png') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

main {
    background: #1a1612;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
}

#univers {
    background: linear-gradient(180deg, #1a1612 0%, #2a2420 100%);
    text-align: center;
}

#univers h2 {
    font-family: 'Cormorant SC', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #ffb347;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #d4c5b0;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.philosophy {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.phil-item {
    text-align: center;
}

.icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    filter: grayscale(0.3) sepia(0.4);
}

.phil-item h3 {
    font-family: 'Cormorant SC', serif;
    font-size: 1.5rem;
    color: #ffb347;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
    display: none;
}

.phil-item p {
    color: #b8a89a;
    line-height: 1.6;
}

#collection {
    background: #2a2420;
}

#collection h2 {
    font-family: 'Cormorant SC', serif;
    font-size: 2.5rem;
    color: #ffb347;
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
}

.subtitle {
    text-align: center;
    color: #b8a89a;
    font-style: italic;
    margin-bottom: 3rem;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.collection-item {
    background: rgba(26, 22, 18, 0.6);
    padding: 2rem;
    border: 1px solid rgba(255, 179, 71, 0.2);
    transition: all 0.3s;
}

.collection-item:hover {
    border-color: rgba(255, 179, 71, 0.5);
    box-shadow: 0 0 20px rgba(255, 179, 71, 0.2);
}

.collection-item h3 {
    font-family: 'Cormorant SC', serif;
    font-size: 1.4rem;
    color: #ffb347;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}

.collection-item p {
    color: #b8a89a;
    line-height: 1.6;
}

#atelier {
    background: linear-gradient(180deg, #2a2420 0%, #1a1612 100%);
}

#atelier h2 {
    font-family: 'Cormorant SC', serif;
    font-size: 2.5rem;
    color: #ffb347;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-item h3 {
    font-family: 'Cormorant SC', serif;
    font-size: 1.3rem;
    color: #ffb347;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}

.service-item p {
    color: #b8a89a;
    line-height: 1.6;
}

#contact {
    background: #2a2420;
    text-align: center;
}

#contact h2 {
    font-family: 'Cormorant SC', serif;
    font-size: 2.5rem;
    color: #ffb347;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.contact-form {
    max-width: 600px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    background: rgba(26, 22, 18, 0.8);
    border: 1px solid rgba(255, 179, 71, 0.3);
    padding: 1rem;
    color: #d4c5b0;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ffb347;
    box-shadow: 0 0 10px rgba(255, 179, 71, 0.2);
}

.contact-form button {
    background: linear-gradient(180deg, #ffb347 0%, #d4860f 100%);
    border: none;
    padding: 1rem 2rem;
    color: #1a1612;
    font-family: 'Cormorant SC', serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.contact-form button:hover {
    box-shadow: 0 0 20px rgba(255, 179, 71, 0.5);
    transform: translateY(-2px);
}

footer {
    background: #0d0a08;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 179, 71, 0.2);
}

footer p {
    color: #b8a89a;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
