/* Palette: Charcoal, Gold/Amber, Smoke Grey */
:root {
    --black: #212121;
    --dark-grey: #333333;
    --gold: #FFC107; /* Amber tone */
    --gold-dark: #FFB300;
    --text: #E0E0E0;
    --white: #FFFFFF;
    
    --font-head: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--black);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    font-weight: 300;
}

.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.section-padding { padding: 80px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; filter: sepia(20%); }

/* Header */
.craft-header { background: rgba(33, 33, 33, 0.95); padding: 20px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #444; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 1.8rem; font-weight: 400; color: var(--white); letter-spacing: 2px; }
.gold { color: var(--gold); }
.sub { display: block; font-size: 0.6rem; letter-spacing: 4px; color: #888; font-family: var(--font-body); margin-top: -5px; }

.atelier-nav a { margin-left: 30px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: #aaa; }
.atelier-nav a:hover, .atelier-nav a.active { color: var(--gold); }

/* Mobile Menu */
.menu-btn { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; }
.menu-btn span { width: 30px; height: 1px; background: var(--gold); }

.mobile-overlay { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--black); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.4s; }
.mobile-overlay.active { right: 0; }
.close-btn { position: absolute; top: 30px; right: 30px; font-size: 2rem; color: var(--gold); background: none; border: none; cursor: pointer; }
.mobile-overlay a { font-family: var(--font-head); font-size: 2rem; margin: 20px 0; color: var(--white); }

@media (max-width: 900px) {
    .atelier-nav { display: none; }
    .menu-btn { display: flex; }
}

/* Hero */
.hero-craft { height: 90vh; background-size: cover; background-position: center; position: relative; }
.dark-gradient { width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(33,33,33,0.3), rgba(33,33,33,1)); display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-content { max-width: 800px; padding: 20px; }
.craft-tag { color: var(--gold); letter-spacing: 4px; font-size: 0.9rem; display: block; margin-bottom: 20px; text-transform: uppercase; }
.hero-content h1 { font-family: var(--font-head); font-size: 3.5rem; line-height: 1.2; margin-bottom: 30px; color: var(--white); text-shadow: 0 0 20px rgba(0,0,0,0.5); }
.hero-content p { font-size: 1.2rem; color: #ccc; margin-bottom: 40px; font-weight: 300; }

.cta-row { display: flex; justify-content: center; gap: 20px; }
.btn-gold { background: var(--gold); color: var(--black); padding: 15px 35px; border: 1px solid var(--gold); font-family: var(--font-head); font-weight: 700; cursor: pointer; }
.btn-outline { background: transparent; border: 1px solid var(--white); color: var(--white); padding: 15px 35px; font-family: var(--font-head); font-weight: 700; cursor: pointer; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* Workshop Grid */
.section-head h2 { font-family: var(--font-head); font-size: 2.2rem; color: var(--white); letter-spacing: 2px; }
.gold-sep { width: 60px; height: 2px; background: var(--gold); margin: 20px auto; }
.gold-sep.left { margin: 20px 0; }
.text-center { text-align: center; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 50px; }
.craft-card { background: var(--dark-grey); border: 1px solid #444; transition: 0.3s; }
.craft-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.card-img { height: 250px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; opacity: 0.8; }
.craft-card:hover img { transform: scale(1.1); opacity: 1; }
.card-info { padding: 30px; text-align: center; }
.card-info h3 { font-family: var(--font-head); color: var(--white); margin-bottom: 15px; font-size: 1.2rem; }
.card-info p { color: #aaa; font-size: 0.9rem; margin-bottom: 20px; }
.link-gold { color: var(--gold); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

/* Scent Bar */
.scent-bar { background: #1a1a1a; padding: 50px 0; border-top: 1px solid #333; border-bottom: 1px solid #333; margin-top: 50px; }
.scent-flex { display: flex; justify-content: space-around; text-align: center; }
.scent-item strong { display: block; font-family: var(--font-head); font-size: 2.5rem; color: var(--gold); }
.scent-item span { font-size: 0.8rem; letter-spacing: 2px; color: #888; }

/* Program List (Products Page) */
.program-layout { max-width: 900px; margin: 0 auto; }
.program-intro { margin-bottom: 50px; }
.program-item { background: var(--dark-grey); border: 1px solid #444; margin-bottom: 30px; padding: 40px; display: flex; flex-direction: column; gap: 20px; transition: 0.3s; }
.program-item.highlight { border-color: var(--gold); background: rgba(255, 193, 7, 0.05); }
.p-header { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid #555; padding-bottom: 15px; }
.p-header h3 { font-family: var(--font-head); font-size: 1.5rem; color: var(--white); }
.p-price { color: var(--gold); font-style: italic; }
.p-body ul { list-style: none; margin: 20px 0; color: #bbb; }
.p-body li { margin-bottom: 10px; }
.btn-book { display: inline-block; background: var(--gold); color: var(--black); padding: 10px 30px; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; font-size: 0.9rem; }

/* Science / Culture */
.culture-block { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: center; }
.text-col h1 { font-family: var(--font-head); font-size: 2.5rem; color: var(--white); }
.note-box { margin-top: 30px; border-left: 2px solid var(--gold); padding-left: 20px; }
.note-box h3 { color: var(--white); font-family: var(--font-head); margin-bottom: 5px; }
.img-col img { border: 1px solid #444; padding: 10px; }

/* Contact */
.booking-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; background: var(--dark-grey); padding: 60px; border: 1px solid #444; }
.info-section h2 { font-family: var(--font-head); color: var(--gold); margin-bottom: 20px; }
.details { margin-top: 30px; color: #ccc; }

.atelier-form .form-row { margin-bottom: 20px; display: flex; gap: 20px; }
.atelier-form input, .atelier-form select, .atelier-form textarea { width: 100%; background: #222; border: 1px solid #555; padding: 12px; color: var(--white); font-family: var(--font-body); }
.atelier-form input:focus, .atelier-form textarea:focus { border-color: var(--gold); outline: none; }
.submit-btn { width: 100%; background: var(--gold); color: var(--black); border: none; padding: 15px; font-family: var(--font-head); font-weight: 700; cursor: pointer; }

/* Legal */
.legal-box { max-width: 800px; margin: 0 auto; background: var(--dark-grey); padding: 50px; border: 1px solid #444; }
.legal-box h1 { font-family: var(--font-head); color: var(--white); }
.legal-box h3 { color: var(--gold); margin-top: 30px; font-family: var(--font-head); }

/* Footer */
.craft-footer { background: #111; padding: 60px 0 20px; margin-top: 80px; border-top: 1px solid #333; }
.footer-content { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #333; padding-bottom: 30px; margin-bottom: 20px; }
.f-left h4 { font-family: var(--font-head); color: var(--white); letter-spacing: 2px; }
.f-right a { color: #888; margin-left: 20px; }
.f-right a:hover { color: var(--gold); }
.copyright { text-align: center; font-size: 0.8rem; color: #666; }

/* Cookie */
.cookie-dark { position: fixed; bottom: 20px; right: 20px; background: var(--white); color: var(--black); padding: 15px 25px; display: flex; align-items: center; gap: 15px; z-index: 9999; display: none; }
.cookie-dark.active { display: flex; }
.cookie-dark button { background: var(--black); color: var(--gold); border: none; padding: 5px 15px; font-family: var(--font-head); cursor: pointer; }

@media (max-width: 900px) {
    .grid-3, .culture-block, .booking-wrapper, .scent-flex, .atelier-form .form-row { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.5rem; }
    .footer-content { flex-direction: column; text-align: center; gap: 20px; }
}