:root {
    --roundhouse-gold: #D4A345;  /* From your logo stone */
    --roundhouse-slate: #2C3E50; /* From your logo roof */
    --ivy-green: #2D5A27;        /* From your logo archway */
    --carnival-pink: #FF00FF;    /* Your vibrant accent */
    --sunshine: #FFD700;         /* For energy */
    --bg-cream: #FCF8F0;         /* Soft background */
}

body {
    font-family: 'Georgia', serif; /* Classic feel to match the architecture */
    margin: 0;
    line-height: 1.6;
    color: var(--roundhouse-slate);
    background-color: var(--bg-cream);
}

header {
    text-align: center;
    padding: 4rem 1rem;
    background: white;
    border-bottom: 6px solid var(--roundhouse-gold);
}

.logo {
    max-width: 200px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.2rem;
    letter-spacing: 2px;
    margin: 0;
}

.tagline {
    font-family: sans-serif;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--ivy-green);
    font-weight: bold;
}

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

.mission-box {
    background: white;
    border: 2px dashed var(--roundhouse-gold); /* 'Stitch' effect */
    padding: 30px;
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-bottom: 40px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.card {
    background: white;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-top: 4px solid var(--carnival-pink); 
    text-align: center;
    border-radius: 2px;
}

/* Alternate top borders on cards for that mismatched, quirky art vibe */
.card:nth-child(3n+2) {
    border-top-color: var(--roundhouse-gold);
}

.card:nth-child(3n+3) {
    border-top-color: var(--ivy-green);
}

.product-img {
    width: 100%;
    height: 250px;
    object-fit: cover; /* Keeps photos crisp and perfectly cropped */
    border-radius: 2px;
    margin-bottom: 15px;
}

.coming-soon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-cream);
    border: 2px dashed var(--roundhouse-gold);
    color: var(--roundhouse-slate);
    font-family: sans-serif;
    font-size: 0.95rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.85;
}

.card h3 {
    font-size: 1.3rem;
    margin: 10px 0;
}

.card p {
    font-size: 0.95rem;
    color: #555;
}

#studio {
    background: white;
    padding: 40px;
    border: 1px solid #eee;
    text-align: center;
    margin-top: 40px;
}

.market-dates {
    background: var(--bg-cream);
    padding: 20px;
    margin: 30px auto;
    max-width: 500px;
    border-left: 4px solid var(--ivy-green);
    text-align: left;
}

.market-dates h3 {
    margin-top: 0;
    color: var(--ivy-green);
}

.market-dates ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.market-dates li {
    margin-bottom: 10px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 25px;
}

.btn {
    display: inline-block;
    background: var(--roundhouse-slate);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-family: sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-top: 20px;
    transition: background 0.3s;
}

.btn:hover {
    background: var(--roundhouse-gold);
}

footer {
    text-align: center;
    padding: 2rem;
    background: white;
    border-top: 1px solid #eee;
    font-size: 0.85rem;
}
