:root{--gold:#c9a84c;--dark:#1a1a1a;--mid:#2d2d2d;--light:#f5f0e8;--accent:#8b4e9e;--gold-grad:linear-gradient(135deg,#c9a84c,#9b5a28)}
*{box-sizing:border-box;margin:0;padding:0}
body{font-family:'Lora', Georgia, serif;background:var(--dark);color:var(--light);min-height:100vh;position:relative}
body::before{content:"";position:fixed;inset:0;background:url('20211017_095008.jpg') no-repeat center center;background-size:cover;opacity:0.2;z-index:-1}
header{text-align:center;padding:2rem 1rem 1.2rem;
  background:linear-gradient(180deg,#0d0d0d 0%,var(--dark) 100%);
  border-bottom:1px solid #333}
header h1{font-family:'Playfair Display', serif;font-size:clamp(1.8rem,5vw,3rem);letter-spacing:.05em;
  color:var(--gold);text-transform:uppercase;font-weight:700}
.subtitle{font-family:'Inter', sans-serif;font-size:clamp(.8rem,2vw,.95rem);color:#999;margin-top:.35rem;
  letter-spacing:.08em;font-style:italic}
.lang-bar{margin-top:.8rem;display:flex;justify-content:center;gap:.4rem}
.lang-btn{background:transparent;border:1px solid #444;color:#777;
  padding:.22rem .6rem;font-size:.74rem;letter-spacing:.08em;cursor:pointer;
  border-radius:2px;font-family:'Inter', sans-serif;transition:all .18s}
.lang-btn:hover{color:var(--gold);border-color:var(--gold)}
.lang-btn.active{background:var(--gold);color:var(--dark);border-color:var(--gold);font-weight:bold}
nav{display:flex;flex-wrap:wrap;justify-content:center;gap:.3rem;
  padding:.8rem 1rem 0;background:var(--dark);position:sticky;
  top:0;z-index:100;border-bottom:1px solid #333}
nav button{background:transparent;color:#aaa;border:1px solid #444;
  padding:.4rem .9rem;font-size:.78rem;letter-spacing:.05em;cursor:pointer;
  border-radius:2px;transition:all .2s;font-family:'Inter', sans-serif;white-space:nowrap}
nav button:hover{color:var(--gold);border-color:var(--gold)}
nav button.active{background:var(--gold);color:var(--dark);border-color:var(--gold);font-weight:bold}
.section{display:none;padding:2rem 1.5rem 3rem;max-width:1400px;margin:0 auto}
.section.visible{display:block}
.section h2{font-family:'Playfair Display', serif;font-size:1.6rem;color:var(--gold);letter-spacing:.05em;
  text-transform:uppercase;font-weight:700;margin-bottom:.4rem;
  border-bottom:1px solid #333;padding-bottom:.6rem}
.count{font-family:'Inter', sans-serif;font-size:.82rem;color:#777;margin-bottom:1.5rem;letter-spacing:.02em}
.grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(210px,1fr));gap:1rem}
.card{cursor:pointer;position:relative;overflow:hidden;border-radius:3px;
  background:var(--mid);aspect-ratio:3/4;transition:transform .2s,box-shadow .2s}
.card:hover{transform:translateY(-3px);box-shadow:0 8px 24px rgba(0,0,0,.5)}
.card img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .3s}
.card:hover img{transform:scale(1.04)}
.card .label{position:absolute;bottom:0;left:0;right:0;
  background:linear-gradient(transparent,rgba(0,0,0,.85));color:#eee;
  font-family:'Inter', sans-serif;
  font-size:.72rem;padding:1.5rem .6rem .5rem;letter-spacing:.04em;
  opacity:0;transition:opacity .2s}
.card:hover .label{opacity:1}
.new-badge{position:absolute;top:.4rem;right:.4rem;background:var(--gold);
  color:var(--dark);font-size:.58rem;font-weight:bold;letter-spacing:.04em;
  padding:.12rem .38rem;border-radius:2px}
.early-badge{position:absolute;top:.4rem;right:.4rem;background:#5a5a5a;
  color:#f5f0e8;font-size:.58rem;font-weight:bold;letter-spacing:.04em;
  padding:.12rem .38rem;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,0.5)}
.no-results{text-align:center;padding:3rem;color:#555;font-style:italic;display:none}
#lightbox{display:none;position:fixed;inset:0;background:rgba(0,0,0,.96);
    z-index:1000;flex-direction:column;align-items:center;justify-content:flex-start;overflow-y:auto;padding:2rem 0}
#lightbox.open{display:flex}
#lb-img{max-width:90vw;max-height:60vh;object-fit:contain;border-radius:2px;
    box-shadow:0 4px 40px rgba(0,0,0,.8)}
#lb-info{text-align:center;margin-top:.8rem;max-width:640px;padding:0 1.5rem}
#lb-title{font-size:1.05rem;color:var(--light);letter-spacing:.05em}
#lb-title-sub{font-size:.76rem;color:#777;margin-top:.18rem;font-style:italic}
#lb-cat{font-size:.66rem;color:var(--gold);margin-top:.28rem;
  letter-spacing:.08em;text-transform:uppercase}
#lb-desc{font-size:.82rem;color:#bbb;margin-top:.7rem;line-height:1.75;
  font-style:italic;border-top:1px solid #2a2a2a;padding-top:.65rem;display:none}
#lb-close{position:fixed;top:1rem;right:1.2rem;font-size:2rem;color:#aaa;
  cursor:pointer;background:none;border:none;line-height:1;z-index:1001;transition:color .2s}
#lb-close:hover{color:white}
#lb-prev,#lb-next{position:fixed;top:50%;transform:translateY(-50%);
  background:rgba(255,255,255,.07);border:none;color:#bbb;
  font-size:2.2rem;padding:.5rem .8rem;cursor:pointer;border-radius:3px;z-index:1001;
  transition:background .2s,color .2s}
#lb-prev{left:.5rem}#lb-next{right:.5rem}
#lb-prev:hover,#lb-next:hover{background:rgba(255,255,255,.18);color:white}
#lb-counter{position:fixed;top:1rem;left:50%;transform:translateX(-50%);
  color:#555;font-size:.75rem;z-index:1001}
.mk-hero{display:flex;flex-wrap:wrap;gap:2.5rem;margin-bottom:2.5rem}
.palette-box{background:var(--mid);border-radius:6px;padding:1.5rem;min-width:260px}
.mk-h3{color:var(--gold);font-size:.82rem;letter-spacing:.1em;
  text-transform:uppercase;margin-bottom:1.1rem;font-weight:normal}
.swatch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem 0.5rem;
}
.sw-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 0.5rem;
}
.swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0,0,0,0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.sw-pct {
  font-size: 0.85rem;
  color: #fff;
  margin-top: 0.5rem;
  font-weight: 500;
}
.bar-chart{flex:1 1 380px}
.bar-row{display:flex;align-items:center;margin-bottom:.55rem;gap:.6rem}
.bar-name{width:120px;font-size:.74rem;color:#bbb;flex-shrink:0;text-align:right}
.bar-track{flex:1;height:16px;background:#2a2a2a;border-radius:3px;overflow:hidden}
.bar-fill{height:100%;border-radius:3px;transition:width .6s ease}
.bar-pct{width:36px;font-size:.72rem;color:#777;text-align:right;flex-shrink:0}
.filter-panel{background:var(--mid);border-radius:6px;padding:1.4rem;margin-bottom:1.8rem}
.filter-instructions{font-size:.8rem;color:#aaa;margin-bottom:1rem;line-height:1.5}
.filter-colors{display:flex;flex-wrap:wrap;gap:.7rem;margin-bottom:1rem}
.fc-btn{display:flex;align-items:center;gap:.5rem;background:#1a1a1a;
  border:2px solid #333;border-radius:20px;padding:.35rem .75rem;
  cursor:pointer;transition:all .2s;font-family:inherit;color:#aaa;font-size:.75rem}
.fc-btn:hover{border-color:#666;color:#ddd}
.fc-btn.selected{border-color:white;color:white;background:#252525}
.fc-dot{width:18px;height:18px;border-radius:50%;flex-shrink:0;box-shadow:0 1px 4px rgba(0,0,0,.4)}
.filter-actions{display:flex;align-items:center;gap:1rem;flex-wrap:wrap}
.btn-apply{background:var(--gold);color:var(--dark);border:none;padding:.45rem 1.2rem;
  border-radius:3px;font-family:inherit;font-size:.8rem;font-weight:bold;cursor:pointer;
  letter-spacing:.05em;transition:opacity .2s}
.btn-apply:hover{opacity:.85}.btn-apply:disabled{opacity:.4;cursor:default}
.btn-reset{background:transparent;color:#666;border:1px solid #444;padding:.45rem 1rem;
  border-radius:3px;font-family:inherit;font-size:.8rem;cursor:pointer;
  letter-spacing:.05em;transition:all .2s}
.btn-reset:hover{color:#aaa;border-color:#666}
.filter-status{font-size:.75rem;color:#888;font-style:italic}
.mk-note{font-size:.7rem;color:#444;margin-top:2rem;font-style:italic;line-height:1.6}
.dom-section{margin-top:2rem}
.dom-cards{display:flex;flex-wrap:wrap;gap:.8rem}
.dom-card{background:var(--mid);border-radius:6px;padding:.7rem 1.1rem;
  display:flex;align-items:center;gap:.7rem;min-width:165px}
.dom-swatch{width:26px;height:26px;border-radius:50%;flex-shrink:0}
.dom-name{font-size:.76rem;color:#ddd}
.dom-count{font-size:.66rem;color:#666;margin-top:.1rem}
.bio-section{max-width:900px}
.portrait-wrap{float:right;margin:0 0 2rem 2.5rem;text-align:center}
.portrait-wrap img{width:220px;border-radius:4px;box-shadow:0 4px 24px rgba(0,0,0,.5)}
.portrait-caption{font-size:.68rem;color:#666;margin-top:.5rem;letter-spacing:.05em}
.bio-text{font-size:.95rem;line-height:1.9;color:#ccc;margin-bottom:1.5rem}
.bio-sec-title{font-size:1rem;color:var(--gold);font-weight:400;letter-spacing:.08em;margin:2rem 0 .7rem;text-transform:uppercase;font-style:normal}
.statement-box{background:var(--mid);border-left:3px solid var(--gold);
  padding:1.4rem 1.8rem;border-radius:0 6px 6px 0;margin:2.5rem 0;clear:both}
.statement-quote{font-size:1.05rem;color:var(--light);font-style:italic;line-height:1.8}
.statement-attr{font-size:.78rem;color:var(--gold);margin-top:.8rem;
  letter-spacing:.1em;text-transform:uppercase}
.clearfix::after{content:"";display:table;clear:both}
.legal-section{max-width:780px;line-height:1.85}
.legal-section h3{color:var(--gold);font-size:.92rem;letter-spacing:.08em;
  text-transform:uppercase;margin:2rem 0 .6rem;font-weight:normal}
.legal-section p{font-size:.9rem;color:#bbb;margin-bottom:.8rem}
.legal-section a{color:var(--gold);text-decoration:none}
.legal-section a:hover{text-decoration:underline}
.legal-lang-tabs{display:flex;gap:.4rem;margin-bottom:1.8rem;flex-wrap:wrap}
.legal-lang-btn{background:transparent;border:1px solid #444;color:#777;
  padding:.3rem .8rem;font-size:.75rem;cursor:pointer;border-radius:2px;font-family:inherit}
.legal-lang-btn.active{background:#333;color:var(--gold);border-color:var(--gold)}
.legal-block{display:none}
.legal-block.visible{display:block}
footer {
  text-align: center;
  padding: 3rem 1rem;
  color: #aaa;
  font-size: 0.85rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer span { color: var(--gold); font-weight: 500; }
footer a { color: #ccc; text-decoration: none; cursor: pointer; transition: color 0.3s; }
footer a:hover { color: var(--gold); }
@media(max-width:600px){
  .bar-name{width:80px;font-size:.68rem}
  .swatch-grid{grid-template-columns:repeat(3,1fr)}
  .portrait-wrap{float:none;margin:0 auto 1.5rem;text-align:center}
  .portrait-wrap img{width:160px;margin:0 auto}
}
/* Interpretation Panel */
#lb-more-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1.2rem;
  background: var(--mid);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: inherit;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
}
#lb-more-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

#lb-interpretation-panel {
  position: absolute;
  top: 0;
  right: -100%; /* Hidden by default */
  width: 400px;
  height: 100%;
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1100;
  padding: 3rem 2rem;
  overflow-y: auto;
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}
#lb-interpretation-panel.open {
  right: 0;
}

#lb-inter-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: #888;
  font-size: 1.5rem;
  cursor: pointer;
}
#lb-inter-close:hover { color: white; }

.inter-content {
  color: #ddd;
  font-family: 'Times New Roman', Times, serif; /* Curator style */
  line-height: 1.8;
  font-size: 0.95rem;
}
.inter-content h1, .inter-content h2 {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 1.5rem 0 0.8rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  padding-bottom: 0.4rem;
}
.inter-content h1 { font-size: 1.4rem; margin-top: 0; }
.inter-content h2 { font-size: 1.2rem; }
.inter-content p { margin-bottom: 1.2rem; }
.inter-content strong { color: var(--gold); }

@media(max-width: 800px) {
  #lb-interpretation-panel {
    width: 100%;
    right: -100%;
  }
}

/* Contact & Interaction Section */
.contact-container {
  max-width: 800px;
  margin: 2rem auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
}

.contact-info {
  display: none; /* Temporarily hidden */
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  color: #aaa;
}

.form-group input, 
.form-group select, 
.form-group textarea {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.8rem;
  color: #fff;
  font-family: inherit;
  transition: all 0.3s;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.1em;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option {
  background-color: #1a1a1a;
  color: #fff;
  padding: 10px;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.btn-send {
  padding: 1rem;
  background: var(--gold-grad);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s;
}

.btn-send:hover {
  opacity: 0.9;
}

/* Lightbox Actions */
.lb-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.2rem;
    width: 100%;
    padding-bottom: 2rem;
  }

.lb-actions button {
  font-family: inherit;
}

.action-btn, #lb-more-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
    text-transform: uppercase;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  .action-btn:hover, #lb-more-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  }

.action-btn:hover {
  background: var(--gold-grad);
  border-color: transparent;
}

/* Share Section in Lightbox */
.lb-share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 0 auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 400px;
  flex-wrap: wrap;
}
.lb-share span#lb-share-lbl {
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 0.5rem;
}
.lb-share a, .lb-share button {
  background: none;
  border: none;
  color: #ccc;
  font-family: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s;
  padding: 0;
}
.lb-share a:hover, .lb-share button:hover {
  color: var(--gold);
  text-decoration: underline;
}

@media (max-width: 850px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  .contact-info {
    display: none;
  }
}



.checkbox-group { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.5rem; }
.cb-label { display: flex; align-items: center; gap: 0.8rem; cursor: pointer; font-size: 0.95rem; color: var(--light); }
.cb-label input[type='checkbox'] { width: 1.2rem; height: 1.2rem; cursor: pointer; accent-color: var(--gold); }


#sec-8, #sec-9, #sec-10 { background: rgba(20, 20, 20, 0.85); padding: 2rem; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); max-width: 900px; margin: 2rem auto; }
#sec-8 p { color: #f0f0f0; line-height: 1.8; font-size: 1.1rem; }

/* FAQ Section */
#sec-12 {
  background: rgba(20, 20, 20, 0.85);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  max-width: 900px;
  margin: 2rem auto;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}

.faq-item:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.faq-item.open {
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(255, 255, 255, 0.04);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: none;
  border: none;
  color: var(--light);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1.5;
}

.faq-question:hover { color: var(--gold); }
.faq-item.open .faq-question { color: var(--gold); }
.faq-q-text { flex: 1; }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform 0.3s, background 0.3s;
}

.faq-item.open .faq-icon {
  background: rgba(201, 168, 76, 0.15);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s;
  padding: 0 1.4rem;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.4rem 1.2rem;
}

.faq-answer p {
  color: #bbb;
  font-size: 0.9rem;
  line-height: 1.8;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.8rem;
  margin: 0;
}

@media(max-width: 600px) {
  .faq-question { font-size: 0.88rem; padding: 0.9rem 1rem; }
  .faq-answer { padding: 0 1rem; }
  .faq-item.open .faq-answer { padding: 0 1rem 1rem; }
}