:root{--color-bg:#0c100a;--color-surface:#141a0e;--color-surface-raised:#1e2814;--color-border:#2a3a1e;--color-text:#ccdba8;--color-text-muted:#6a8555;--color-gold:#b8cc00;--color-dark-bg:#0c100a;--color-dark-surface:#141a0e;--color-dark-border:#2a3a1e;--color-dark-text:#ccdba8;--color-dark-muted:#6a8555;--color-accent-start:#3a6a12;--color-accent-end:#9acc00;--gradient-accent:linear-gradient(135deg, #3a6a12 0%, #9acc00 100%);--gradient-text:linear-gradient(135deg, #7ab800 0%, #c8dc00 100%);--font-heading:'Cinzel', Georgia, serif;--font-body:'Inter', system-ui, sans-serif;--radius:4px;--radius-lg:8px;--max-width:1100px;--nav-height:64px}*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}html{scroll-behavior:smooth}body{background:var(--color-bg);color:var(--color-text);font-family:var(--font-body);font-size:1rem;line-height:1.7;min-height:100vh;display:flex;flex-direction:column}img{max-width:100%;display:block}a{color:inherit;text-decoration:none}ul{list-style:none}.site-main{flex:1}h1,h2,h3,h4{font-family:var(--font-heading);font-weight:700;line-height:1.2;letter-spacing:.02em}h1{font-size:clamp(2rem,5vw,3.5rem)}h2{font-size:clamp(1.5rem,3vw,2.2rem)}h3{font-size:clamp(1.1rem,2vw,1.5rem)}h4{font-size:1rem;letter-spacing:.1em;text-transform:uppercase}.gradient-text{background:var(--gradient-text);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}p{margin-bottom:1rem}p:last-child{margin-bottom:0}.content-body h2,.content-body h3{margin-top:2rem;margin-bottom:.75rem}.content-body ul,.content-body ol{padding-left:1.5rem;margin-bottom:1rem;list-style:revert}.container{max-width:var(--max-width);margin:0 auto;padding:0 1.5rem}.section{padding:4rem 0}.section-sm{padding:2.5rem 0}.section-title{font-family:var(--font-heading);font-size:clamp(1.4rem,3vw,2rem);margin-bottom:2rem;position:relative;display:inline-block}.section-title::after{content:'';display:block;height:2px;margin-top:.4rem;background:var(--gradient-accent);border-radius:2px}.site-nav{position:sticky;top:0;z-index:100;background:rgba(17,17,17,.96);backdrop-filter:blur(12px);border-bottom:1px solid var(--color-dark-border);height:var(--nav-height)}.site-nav::after{content:'';display:block;height:2px;background:var(--gradient-accent);position:absolute;bottom:0;left:0;right:0}.nav-inner{max-width:var(--max-width);margin:0 auto;padding:0 1.5rem;height:100%;display:flex;align-items:center;gap:2rem}.nav-logo{flex-shrink:0;display:flex;align-items:center;gap:.75rem}.nav-logo-text{font-family:var(--font-heading);font-size:1.1rem;font-weight:700;background:var(--gradient-text);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;white-space:nowrap}.nav-links{display:flex;gap:.25rem;flex:1}.nav-links li a{padding:.4rem .75rem;border-radius:var(--radius);font-size:.85rem;font-weight:500;letter-spacing:.04em;text-transform:uppercase;color:var(--color-dark-muted);transition:color .2s,background .2s;white-space:nowrap}.nav-links li a:hover,.nav-links li a.active{color:var(--color-dark-text);background:var(--color-dark-surface)}.lang-switcher{display:flex;gap:.5rem;flex-shrink:0}.lang-link{font-size:.75rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:var(--color-dark-muted);padding:.25rem .5rem;border:1px solid var(--color-dark-border);border-radius:var(--radius);transition:color .2s,border-color .2s}.lang-link:hover{color:var(--color-dark-text);border-color:#555}.lang-active{color:var(--color-dark-text);border-color:var(--color-accent-end)}.nav-toggle{display:none;flex-direction:column;gap:5px;background:0 0;border:none;cursor:pointer;padding:.5rem;margin-left:auto}.nav-toggle span{display:block;width:22px;height:2px;background:var(--color-dark-text);border-radius:2px;transition:transform .2s,opacity .2s}.hero{padding:6rem 0 4rem;text-align:center;position:relative;overflow:hidden;background:var(--color-dark-bg)}.hero::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at center top,rgba(154,204,0,7%) 0%,transparent 65%);pointer-events:none}.hero-title{font-size:clamp(2.5rem,8vw,5rem);font-weight:900;line-height:1;letter-spacing:.04em;background:var(--gradient-text);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;margin-bottom:1rem}.hero-tagline{font-family:var(--font-heading);font-size:clamp(.9rem,2vw,1.1rem);color:var(--color-dark-muted);letter-spacing:.15em;text-transform:uppercase;margin-bottom:2.5rem}.hero-actions{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}.btn{display:inline-block;padding:.65rem 1.5rem;border-radius:var(--radius);font-weight:600;font-size:.875rem;letter-spacing:.05em;text-transform:uppercase;transition:opacity .2s,transform .2s;cursor:pointer}.btn:hover{opacity:.85;transform:translateY(-1px)}.btn-primary{background:var(--gradient-accent);color:#fff}.btn-outline{background:0 0;border:1px solid var(--color-border);color:var(--color-text)}.btn-outline:hover{border-color:var(--color-accent-end);background:var(--color-surface-raised)}.card{background:var(--color-surface);border-radius:var(--radius-lg);overflow:hidden;position:relative;transition:transform .2s,box-shadow .2s}.card::before{content:'';position:absolute;top:0;left:0;right:0;height:2px;background:var(--gradient-accent)}.card:hover{transform:translateY(-3px);box-shadow:0 8px 32px rgba(0,0,0,.6)}.card-body{padding:1.5rem}.card-date{font-size:.8rem;color:var(--color-gold);letter-spacing:.06em;text-transform:uppercase;margin-bottom:.5rem;font-weight:500}.card-title{font-family:var(--font-heading);font-size:1.1rem;margin-bottom:.5rem;color:var(--color-text)}.card-title a{transition:color .2s}.card-title a:hover{color:var(--color-accent-end)}.card-summary{font-size:.9rem;color:var(--color-text-muted);line-height:1.6}.card-link{display:inline-block;margin-top:1rem;font-size:.8rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--color-accent-end);transition:color .2s}.card-link:hover{color:var(--color-accent-end)}.grid-3{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:1.5rem}.grid-2{display:grid;grid-template-columns:repeat(auto-fill,minmax(360px,1fr));gap:1.5rem}.gig-card{background:var(--color-surface);border-radius:var(--radius-lg);padding:1.5rem;position:relative;overflow:hidden;transition:transform .2s,box-shadow .2s}.gig-card::before{content:'';position:absolute;top:0;left:0;right:0;height:2px;background:var(--gradient-accent)}.gig-card:hover{transform:translateY(-3px);box-shadow:0 8px 32px rgba(0,0,0,.6)}.gig-date-block{display:flex;align-items:center;gap:1rem;margin-bottom:1rem}.gig-date-big{font-family:var(--font-heading);font-size:2rem;font-weight:900;line-height:1;background:var(--gradient-text);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;min-width:3rem}.gig-date-meta{font-size:.85rem;color:var(--color-text-muted)}.gig-date-meta strong{color:var(--color-gold);display:block}.gig-title{font-family:var(--font-heading);font-size:1.2rem;margin-bottom:.75rem}.gig-details{font-size:.875rem;color:var(--color-text-muted);display:grid;gap:.25rem;margin-bottom:1rem}.gig-details span{display:flex;align-items:center;gap:.4rem}.gig-price{color:var(--color-gold);font-weight:600}.gig-cancelled{text-decoration:line-through;opacity:.5}.gigs-archive{margin-top:3rem}.gigs-archive h3{font-family:var(--font-heading);margin-bottom:1rem;color:var(--color-text-muted);font-size:1rem;letter-spacing:.1em;text-transform:uppercase}.gigs-table{width:100%;border-collapse:collapse;font-size:.875rem}.gigs-table th{text-align:left;padding:.5rem 1rem .5rem 0;color:var(--color-text-muted);font-weight:600;letter-spacing:.05em;text-transform:uppercase;font-size:.75rem;border-bottom:1px solid var(--color-border)}.gigs-table td{padding:.6rem 1rem .6rem 0;border-bottom:1px solid rgba(154,204,0,8%);color:var(--color-text-muted)}.gigs-table td:first-child{color:var(--color-gold);white-space:nowrap}.gigs-table td:nth-child(2){color:var(--color-text)}.page-header{padding:3.5rem 0 2rem;border-bottom:1px solid var(--color-border);margin-bottom:3rem}.page-header h1{background:var(--gradient-text);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.post-header{margin-bottom:2rem}.post-meta{display:flex;align-items:center;gap:1rem;flex-wrap:wrap;margin-bottom:1rem;font-size:.85rem;color:var(--color-text-muted)}.post-date{color:var(--color-gold);font-weight:500}.post-back{display:inline-flex;align-items:center;gap:.4rem;font-size:.8rem;color:var(--color-text-muted);text-transform:uppercase;letter-spacing:.06em;font-weight:600;margin-bottom:2rem;transition:color .2s}.post-back:hover{color:var(--color-text)}.post-back::before{content:'←'}.member-grid{display:flex;flex-direction:column;gap:3rem}.member-card{display:flex;gap:2rem;align-items:flex-start}.member-photo{width:160px;flex-shrink:0;aspect-ratio:1;object-fit:cover;border-radius:var(--radius-lg);background:var(--color-surface)}.member-photo-placeholder{width:160px;flex-shrink:0;aspect-ratio:1;border-radius:var(--radius-lg);background:var(--color-surface);display:flex;align-items:center;justify-content:center;font-family:var(--font-heading);font-size:3rem;color:var(--color-border);border:2px solid var(--color-border)}.member-info{flex:1;min-width:0}.member-name{font-family:var(--font-heading);font-size:1.3rem;margin-bottom:.1rem;background:var(--gradient-text);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.member-nickname{font-size:.85rem;color:var(--color-text-muted);font-style:italic;margin-bottom:.35rem}.member-role{font-size:.75rem;color:var(--color-gold);text-transform:uppercase;letter-spacing:.1em;margin-bottom:1rem}.member-bio{font-size:.9rem;color:var(--color-text-muted);line-height:1.7}.member-bio p{margin-bottom:.75rem}.member-bio p:last-child{margin-bottom:0}@media(max-width:540px){.member-card{flex-direction:column}.member-photo,.member-photo-placeholder{width:100%;max-width:200px}}.gallery-tabs{display:flex;gap:.5rem;margin-bottom:2rem;flex-wrap:wrap}.gallery-tab{background:var(--color-surface);border:1px solid var(--color-border);color:var(--color-text-muted);padding:.4rem 1rem;border-radius:var(--radius);cursor:pointer;font-size:.8rem;letter-spacing:.08em;text-transform:uppercase;transition:background .2s,color .2s,border-color .2s}.gallery-tab.active,.gallery-tab:hover{background:var(--color-surface-raised);color:var(--color-gold);border-color:var(--color-gold)}.gallery-album{margin-bottom:1rem;border:1px solid var(--color-border);border-radius:var(--radius-lg);overflow:hidden}.gallery-album-header{width:100%;display:flex;align-items:center;gap:.75rem;padding:1rem 1.25rem;background:var(--color-surface);border:none;color:var(--color-text);cursor:pointer;text-align:left;transition:background .2s}.gallery-album-header:hover{background:var(--color-surface-raised)}.gallery-album-name{font-family:var(--font-heading);font-size:.95rem;flex:1}.gallery-album-count{font-size:.75rem;color:var(--color-text-muted);background:var(--color-surface-raised);padding:.15rem .5rem;border-radius:999px}.gallery-album-chevron{color:var(--color-text-muted);font-size:1rem;transition:transform .2s}.gallery-album-body{display:none;padding:1rem;background:var(--color-bg)}.gallery-album-body.open{display:block}.gallery-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:.5rem}.gallery-item{cursor:pointer;overflow:hidden;border-radius:var(--radius);aspect-ratio:4/3;background:var(--color-surface)}.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform .3s,opacity .3s}.gallery-item:hover img{transform:scale(1.05);opacity:.85}.lightbox{display:none;position:fixed;inset:0;background:rgba(0,0,0,.93);z-index:1000;align-items:center;justify-content:center;flex-direction:column;gap:.75rem}.lightbox.open{display:flex}.lightbox-img{max-width:90vw;max-height:84vh;object-fit:contain;border-radius:var(--radius)}.lightbox-caption{font-size:.8rem;color:var(--color-text-muted)}.lightbox-close{position:absolute;top:1.5rem;right:1.5rem;background:var(--color-surface-raised);border:none;color:var(--color-text);width:40px;height:40px;border-radius:50%;cursor:pointer;font-size:1.25rem;line-height:40px;text-align:center;transition:background .2s}.lightbox-close:hover{background:var(--color-border)}.lightbox-prev,.lightbox-next{position:absolute;top:50%;transform:translateY(-50%);background:var(--color-surface-raised);border:none;color:var(--color-text);width:44px;height:44px;border-radius:50%;cursor:pointer;font-size:1.25rem;transition:background .2s}.lightbox-prev{left:1.5rem}.lightbox-next{right:1.5rem}.lightbox-prev:hover,.lightbox-next:hover{background:var(--color-border)}.shop-intro{max-width:680px;color:var(--color-text-muted);margin-bottom:2.5rem}.shop-intro a{color:var(--color-gold)}.shop-section-title{font-family:var(--font-heading);font-size:.85rem;letter-spacing:.12em;text-transform:uppercase;color:var(--color-text-muted);margin:2.5rem 0 1.25rem;padding-bottom:.5rem;border-bottom:1px solid var(--color-border)}.shop-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:1.5rem}.shop-card{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-lg);overflow:hidden;display:flex;flex-direction:column;transition:border-color .2s}.shop-card:hover{border-color:var(--color-gold)}.shop-card-images{display:flex}.shop-card-images .shop-img{flex:1}.shop-img{width:100%;aspect-ratio:1;object-fit:contain;background:var(--color-surface-raised);padding:1rem}.shop-card-body{padding:1rem 1.25rem 1.25rem;display:flex;flex-direction:column;flex:1;gap:.5rem}.shop-product-name{font-family:var(--font-heading);font-size:.9rem;color:var(--color-text);line-height:1.4}.shop-product-price{font-size:1.1rem;font-weight:600;color:var(--color-gold)}.shop-product-sizes{display:flex;flex-wrap:wrap;gap:.3rem;align-items:baseline}.shop-sizes-label{font-size:.75rem;color:var(--color-text-muted);margin-right:.2rem}.shop-size-tag{font-size:.7rem;background:var(--color-surface-raised);border:1px solid var(--color-border);color:var(--color-text-muted);padding:.1rem .4rem;border-radius:var(--radius)}.shop-order-btn{margin-top:auto;text-align:center}.media-embed{background:var(--color-surface);border-radius:var(--radius-lg);padding:1.5rem;margin-bottom:2rem}.media-embed h3{font-family:var(--font-heading);margin-bottom:1rem;font-size:1rem;letter-spacing:.08em;text-transform:uppercase;color:var(--color-text-muted)}.media-embed iframe{width:100%;border-radius:var(--radius);border:none}.streaming-links{display:flex;flex-wrap:wrap;gap:.75rem;margin-top:1rem}.contact-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:2rem}.contact-block h3{font-family:var(--font-heading);font-size:.85rem;letter-spacing:.12em;text-transform:uppercase;color:var(--color-text-muted);margin-bottom:.75rem}.contact-block a{color:var(--color-gold);transition:color .2s}.contact-block a:hover{color:var(--color-accent-end)}.timeline{position:relative;padding-left:2rem}.timeline::before{content:'';position:absolute;left:0;top:0;bottom:0;width:2px;background:var(--gradient-accent);opacity:.4}.timeline-item{position:relative;margin-bottom:2.5rem}.timeline-item::before{content:'';position:absolute;left:-2.375rem;top:.3rem;width:10px;height:10px;border-radius:50%;background:var(--gradient-accent)}.timeline-year{font-family:var(--font-heading);font-size:1.4rem;font-weight:700;background:var(--gradient-text);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;margin-bottom:.4rem}.timeline-content{color:var(--color-text-muted);font-size:.95rem}.divider{height:1px;background:var(--color-border);margin:3rem 0}.divider-gradient{height:1px;background:var(--gradient-accent);opacity:.3;margin:3rem 0}.site-footer{border-top:1px solid var(--color-dark-border);padding:2.5rem 0;margin-top:4rem;background:var(--color-dark-bg)}.footer-inner{max-width:var(--max-width);margin:0 auto;padding:0 1.5rem;display:flex;align-items:center;flex-wrap:wrap;gap:1.5rem}.footer-social{display:flex;gap:1rem;align-items:center}.footer-social a{color:var(--color-dark-muted);transition:color .2s}.footer-social a:hover{color:var(--color-dark-text)}.footer-contact{margin-left:auto}.footer-contact a{color:var(--color-dark-muted);font-size:.875rem;transition:color .2s}.footer-contact a:hover{color:var(--color-accent-end)}.footer-copyright{width:100%;font-size:.75rem;color:var(--color-dark-muted);opacity:.6}.lang-item-mobile{display:none}@media(max-width:768px){.nav-toggle{display:flex}.nav-links{display:none;position:absolute;top:var(--nav-height);left:0;right:0;background:var(--color-dark-bg);border-bottom:1px solid var(--color-dark-border);flex-direction:column;padding:1rem 1.5rem;gap:.25rem;z-index:99}.nav-links.nav-open{display:flex}.nav-inner{position:relative}.lang-switcher{display:none}.lang-item-mobile{display:flex;gap:.5rem;align-items:center;padding:.5rem .75rem;margin-top:.25rem;border-top:1px solid var(--color-dark-border)}.footer-inner{flex-direction:column;align-items:flex-start}.footer-contact{margin-left:0}.gigs-table td:nth-child(4){display:none}}