:root {
    --terracotta: #bc6c25;
    --sand: #fefae0;
    --earth: #283618;
    --clay: #dda15e;
    --text: #283618;
    --font-serif: 'Libre Baskerville', serif;
}

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

body {
    background-color: var(--sand);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
}

.nav {
    padding: 3rem;
    text-align: center;
    background: white;
    border-bottom: 5px solid var(--terracotta);
}

.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.3)), url('assets/images/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.workshop-info {
    padding: 100px 15%;
    background: white;
    margin: -50px 5% 50px 5%;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(40, 54, 24, 0.1);
    position: relative;
    z-index: 10;
}

.philosophy {
    padding: 10rem 10%;
    background: #fdfdfb;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.philosophy h2 { font-family: var(--font-serif); font-size: 3rem; margin-bottom: 2rem; color: var(--terracotta); }

.shop-grid {
    padding: 8rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
    background: var(--sand);
}

.product-card {
    background: white;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.product-img { width: 100%; height: 350px; object-fit: cover; margin-bottom: 1rem; }

.bio-section {
    padding: 10rem 10%;
    background: var(--earth);
    color: var(--sand);
    display: flex;
    gap: 5rem;
    align-items: center;
}

.bio-img {
    width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 200px 200px 0 0;
}

.process-gallery {
    padding: 8rem 5%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.process-img { width: 100%; height: 250px; object-fit: cover; filter: sepia(0.3); transition: 0.3s; }
.process-img:hover { filter: sepia(0); transform: scale(1.05); }

.newsletter {
    padding: 8rem 20%;
    text-align: center;
    background: var(--terracotta);
    color: white;
}

.footer {
    background: var(--earth);
    color: var(--sand);
    padding: 8rem 10%;
    text-align: center;
}

.btn {
    padding: 15px 40px;
    background: var(--terracotta);
    color: white;
    text-decoration: none;
    border-radius: 0;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn:hover { background: var(--clay); color: var(--earth); }

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* --- Premium Footer Overrides --- */
.footer {
    padding: 8rem 8% !important;
    text-align: left !important;
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.03);
}

.footer h3, .footer h4 {
    font-size: 1.6rem !important;
    margin-bottom: 2rem !important;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.footer a {
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block !important;
    padding: 0.5rem 0;
    opacity: 0.85;
}

.footer a:hover {
    opacity: 1;
    transform: translateX(8px);
}

.footer p {
    opacity: 0.85;
    margin-bottom: 0.8rem;
}
