/* BTEC Racing — shared site styles */

:root{
  --void:#0a0a0b;
  --panel:#131315;
  --panel-2:#1b1b1e;
  --gold:#d4a72c;
  --gold-bright:#f0c43a;
  --line:#2e2e32;
  --line-gold:rgba(212,167,44,0.35);
  --white:#f5f3ec;
  --muted:#9a968c;
  --stripe-skew:-8deg;
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  background:var(--void);
  color:var(--white);
  font-family:'Inter',sans-serif;
  line-height:1.65;
  overflow-x:hidden;
}
h1,h2,h3,h4,.display{
  font-family:'Rajdhani',sans-serif;
  text-transform:uppercase;
  letter-spacing:0.02em;
  font-weight:700;
  line-height:1.08;
}
.mono{font-family:'JetBrains Mono',monospace;}
a{color:inherit;text-decoration:none;}
img{max-width:100%;display:block;}
.wrap{max-width:1180px;margin:0 auto;padding:0 32px;}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important;}
}

/* ---------- NAV ---------- */
header.site-header{
  position:sticky;
  top:0;
  z-index:200;
  background:rgba(10,10,11,0.94);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 32px;
  max-width:1180px;
  margin:0 auto;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.brand img{height:34px; width:auto;}
.navlinks{
  display:flex;
  gap:28px;
  font-size:13px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  font-weight:500;
}
.navlinks a{
  position:relative;
  padding-bottom:4px;
  color:var(--white);
  opacity:0.82;
  transition:opacity 0.2s;
  white-space:nowrap;
}
.navlinks a:hover, .navlinks a.active{opacity:1; color:var(--gold);}
.navlinks a::after{
  content:"";
  position:absolute;
  left:0;bottom:0;
  width:0%;height:2px;
  background:var(--gold);
  transition:width 0.25s ease;
}
.navlinks a:hover::after{width:100%;}
.navtoggle{
  display:none;
  background:none;
  border:1px solid var(--line);
  color:var(--white);
  width:38px; height:34px;
  border-radius:2px;
  cursor:pointer;
  font-size:16px;
}
@media (max-width:900px){
  .navlinks{
    position:absolute;
    top:100%; left:0; right:0;
    background:var(--void);
    border-bottom:1px solid var(--line);
    flex-direction:column;
    gap:0;
    display:none;
    padding:8px 0;
  }
  .navlinks.open{display:flex;}
  .navlinks a{padding:14px 32px; width:100%;}
  .navlinks a::after{display:none;}
  .navtoggle{display:block;}
}

/* ---------- SPONSOR RIBBON ---------- */
.sponsor-ribbon{
  background:var(--panel);
  border-bottom:1px solid var(--line);
  padding:10px 32px;
  text-align:center;
  font-family:'JetBrains Mono',monospace;
  font-size:11px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--muted);
}
.sponsor-ribbon a{color:var(--gold);}
.sponsor-ribbon a:hover{color:var(--gold-bright);}
.sponsor-ribbon img{
  height:16px;
  width:auto;
  display:inline-block;
  vertical-align:-3px;
  margin:0 6px;
  filter:grayscale(0.15);
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero{
  padding:90px 32px 60px;
  text-align:center;
  border-bottom:1px solid var(--line);
  position:relative;
  overflow:hidden;
}
.page-hero .eyebrow{
  font-family:'JetBrains Mono',monospace;
  font-size:12px;
  letter-spacing:0.3em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:16px;
}
.page-hero h1{
  font-size:clamp(38px,6vw,64px);
  margin-bottom:14px;
}
.page-hero p{
  max-width:560px;
  margin:0 auto;
  color:var(--muted);
  font-size:16px;
}

/* ---------- CHEVRON DIVIDER ---------- */
.chevrons{display:flex; height:26px; overflow:hidden;}
.chevrons-inner{display:flex; width:100%; transform:skew(var(--stripe-skew)); margin:0 -40px;}
.chevrons-inner div{flex:1;}
.c-gold{background:var(--gold);}
.c-black{background:var(--void);}

/* ---------- BUTTONS ---------- */
.btn{
  font-family:'Rajdhani',sans-serif;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.08em;
  font-size:15px;
  padding:13px 28px;
  border-radius:2px;
  display:inline-block;
  transition:transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary{background:var(--gold); color:var(--void); border:1px solid var(--gold);}
.btn-primary:hover{background:var(--gold-bright); border-color:var(--gold-bright); transform:translateY(-2px);}
.btn-ghost{border:1px solid var(--line); color:var(--white);}
.btn-ghost:hover{border-color:var(--gold); color:var(--gold); transform:translateY(-2px);}

/* ---------- SECTIONS ---------- */
section{padding:80px 0;}
.section-head{max-width:640px; margin-bottom:48px;}
.section-head .eyebrow{
  font-family:'JetBrains Mono',monospace;
  font-size:12px; letter-spacing:0.25em; text-transform:uppercase;
  color:var(--gold); margin-bottom:14px;
}
.section-head h2{font-size:clamp(30px,4vw,44px); margin-bottom:14px;}
.section-head p{color:var(--muted); font-size:16px;}

/* ---------- ARTICLE / PROSE ---------- */
.article{max-width:720px; margin:0 auto; padding:70px 32px;}
.article .meta{
  font-family:'JetBrains Mono',monospace;
  font-size:12px; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--gold); margin-bottom:14px;
}
.article h1{font-size:clamp(32px,5vw,48px); margin-bottom:28px;}
.article h2{font-size:24px; margin:36px 0 14px; color:var(--gold);}
.article p{color:#d8d5cc; margin-bottom:20px; font-size:16.5px;}
.article img{border-radius:2px; margin:32px 0; border:1px solid var(--line);}
.pullquote{
  border-left:2px solid var(--gold);
  padding:6px 0 6px 22px;
  margin:32px 0;
  font-family:'Rajdhani',sans-serif;
  font-size:22px;
  font-weight:600;
  color:var(--white);
  font-style:normal;
}
.pullquote cite{
  display:block;
  font-family:'JetBrains Mono',monospace;
  font-size:12px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--muted);
  margin-top:10px;
  font-style:normal;
}
.callout{
  background:var(--panel);
  border:1px solid var(--line);
  border-left:3px solid var(--gold);
  padding:22px 26px;
  margin:32px 0;
  font-size:15px;
  color:var(--muted);
}
.callout strong{color:var(--white);}

/* ---------- CARDS ---------- */
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
}
.card{background:var(--panel); padding:34px 28px; transition:background 0.2s ease;}
.card:hover{background:var(--panel-2);}
.card .tag{
  font-family:'JetBrains Mono',monospace; font-size:11px; color:var(--gold);
  letter-spacing:0.15em; text-transform:uppercase; margin-bottom:14px; display:block;
}
.card h3{font-size:21px; margin-bottom:10px;}
.card p{color:var(--muted); font-size:14.5px;}

/* ---------- ROSTER ---------- */
.roster-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
}
.driver-card{background:var(--panel); padding:32px 28px;}
.driver-card .num{
  font-family:'JetBrains Mono',monospace; color:var(--gold);
  font-size:13px; letter-spacing:0.15em; margin-bottom:10px;
}
.driver-card h3{font-size:24px; margin-bottom:4px;}
.driver-card .role{
  font-family:'JetBrains Mono',monospace; font-size:11px; color:var(--muted);
  text-transform:uppercase; letter-spacing:0.1em; margin-bottom:16px; display:block;
}
.driver-card p{color:var(--muted); font-size:14.5px;}

/* ---------- NEWS / REPORT LIST ---------- */
.post-list{display:flex; flex-direction:column;}
.post-row{
  display:grid;
  grid-template-columns:140px 1fr;
  gap:28px;
  padding:32px 0;
  border-top:1px solid var(--line);
  align-items:start;
}
.post-row:last-child{border-bottom:1px solid var(--line);}
.post-row .date{
  font-family:'JetBrains Mono',monospace; font-size:12px; color:var(--gold);
  letter-spacing:0.08em; padding-top:4px;
}
.post-row h3{font-size:22px; margin-bottom:10px;}
.post-row p{color:var(--muted); font-size:15px; margin-bottom:12px;}
.post-row a.readmore{
  font-family:'JetBrains Mono',monospace; font-size:12px; letter-spacing:0.1em;
  text-transform:uppercase; color:var(--gold);
}
.post-row a.readmore:hover{color:var(--gold-bright);}

/* ---------- GALLERY (home teaser, fixed grid) ---------- */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:4px;
}
.gallery-grid figure{
  position:relative;
  overflow:hidden;
  aspect-ratio:4/3;
  background:var(--panel);
}
.gallery-grid img{
  width:100%; height:100%; object-fit:cover;
  transition:transform 0.5s ease;
}
.gallery-grid figure:hover img{transform:scale(1.06);}

/* ---------- GALLERY (masonry, full page) ---------- */
.masonry{
  columns:3 260px;
  column-gap:4px;
}
.masonry figure{
  position:relative;
  break-inside:avoid;
  margin:0 0 4px;
  overflow:hidden;
  background:var(--panel);
  cursor:zoom-in;
  isolation:isolate;
}
.masonry img{
  width:100%; height:auto; display:block;
  transition:transform 0.5s ease, filter 0.4s ease;
}
.masonry figure:hover img{transform:scale(1.05);}
.masonry figure::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 60%, rgba(10,10,11,0.85) 100%);
  opacity:0;
  transition:opacity 0.3s ease;
  pointer-events:none;
}
.masonry figure:hover::after{opacity:1;}
.masonry figure .zoom-hint{
  position:absolute;
  right:14px; bottom:14px;
  width:34px; height:34px;
  border-radius:50%;
  border:1px solid var(--gold);
  color:var(--gold);
  display:flex; align-items:center; justify-content:center;
  font-size:15px;
  opacity:0;
  transform:translateY(6px);
  transition:opacity 0.3s ease, transform 0.3s ease;
  background:rgba(10,10,11,0.6);
}
.masonry figure:hover .zoom-hint{opacity:1; transform:translateY(0);}
@media (max-width:700px){
  .masonry{columns:2 160px;}
}

/* ---------- LIGHTBOX ---------- */
.lightbox{
  position:fixed; inset:0; z-index:500;
  background:rgba(6,6,7,0.96);
  display:none;
  align-items:center; justify-content:center;
  padding:60px 24px;
  backdrop-filter:blur(4px);
}
.lightbox.open{display:flex;}
.lightbox img{
  max-width:100%; max-height:85vh;
  border:1px solid var(--line-gold);
  animation:lbin 0.25s ease both;
}
@keyframes lbin{
  from{opacity:0; transform:scale(0.97);}
  to{opacity:1; transform:scale(1);}
}
.lightbox-close{
  position:absolute; top:24px; right:28px;
  width:44px; height:44px;
  border-radius:50%;
  border:1px solid var(--line-gold);
  background:rgba(19,19,21,0.9);
  color:var(--white);
  font-size:18px;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
}
.lightbox-close:hover{border-color:var(--gold); color:var(--gold);}
.lightbox-nav{
  position:absolute; top:50%; transform:translateY(-50%);
  width:48px; height:48px;
  border-radius:50%;
  border:1px solid var(--line-gold);
  background:rgba(19,19,21,0.9);
  color:var(--white);
  font-size:20px;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
}
.lightbox-nav:hover{border-color:var(--gold); color:var(--gold);}
.lightbox-prev{left:20px;}
.lightbox-next{right:20px;}
@media (max-width:600px){
  .lightbox-nav{width:40px; height:40px; font-size:16px;}
  .lightbox-prev{left:8px;} .lightbox-next{right:8px;}
}

/* ---------- LIVERY SHOWCASE ---------- */
.livery-links{display:flex; gap:16px; flex-wrap:wrap; margin-top:8px;}
.livery-links a{
  font-family:'Rajdhani',sans-serif; font-weight:600; text-transform:uppercase;
  letter-spacing:0.06em; font-size:14px; color:var(--white);
  border:1px solid var(--line); padding:12px 22px; border-radius:2px;
  display:inline-flex; align-items:center; gap:8px;
}
.livery-links a:hover{border-color:var(--gold); color:var(--gold);}

/* ---------- SHOP FILTERS ---------- */
.shop-filters{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:8px;
}
.shop-filter{
  font-family:'Rajdhani',sans-serif;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.06em;
  font-size:13.5px;
  padding:10px 22px;
  border-radius:999px;
  border:1px solid var(--line);
  background:transparent;
  color:var(--muted);
  cursor:pointer;
  transition:border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.shop-filter:hover{border-color:var(--gold); color:var(--white);}
.shop-filter.active{
  border-color:var(--gold);
  background:var(--gold);
  color:var(--void);
}
.shop-empty{
  display:none;
  padding:70px 0;
  text-align:center;
  color:var(--muted);
  font-size:15px;
  border-top:1px solid var(--line);
}
.shop-empty.visible{display:block;}
.shop-empty strong{color:var(--white); display:block; font-family:'Rajdhani',sans-serif; font-size:20px; text-transform:uppercase; letter-spacing:0.04em; margin-bottom:8px;}

/* ---------- SHOP ---------- */
.shop-list{display:flex; flex-direction:column;}
.shop-item{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:56px;
  align-items:center;
  padding:64px 0;
  border-top:1px solid var(--line);
}
.shop-list .shop-item:last-child{border-bottom:1px solid var(--line);}
.shop-item.reverse{grid-template-columns:0.9fr 1.1fr;}
.shop-item.reverse .shop-images{order:2;}
.shop-item.reverse .shop-body{order:1;}
.shop-images{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.shop-images.single{grid-template-columns:1fr; max-width:420px; margin:0 auto;}
.shop-images figure{margin:0;}
.shop-images img{
  width:100%; height:auto; display:block;
  background:var(--panel);
  border:1px solid var(--line);
  transition:transform 0.4s ease;
}
.shop-images figure:hover img{transform:scale(1.02);}
.shop-images figcaption{
  margin-top:10px;
  font-family:'JetBrains Mono',monospace;
  font-size:11px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--muted);
  text-align:center;
}
.shop-body h3{font-size:30px; margin-bottom:10px;}
.shop-price{
  font-family:'JetBrains Mono',monospace;
  color:var(--gold);
  font-size:22px;
  font-weight:600;
  margin-bottom:18px;
}
.shop-sizes{
  font-family:'JetBrains Mono',monospace;
  font-size:12px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:28px;
}
.shop-sizes span{color:var(--white);}
@media (max-width:800px){
  .shop-item, .shop-item.reverse{grid-template-columns:1fr; gap:24px; padding:44px 0;}
  .shop-item.reverse .shop-images{order:1;}
  .shop-item.reverse .shop-body{order:2;}
}

/* ---------- TROPHY SHOWCASE ---------- */
.trophy-showcase{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:48px;
  align-items:center;
}
.trophy-showcase img{
  border:1px solid var(--line);
  width:100%;
}
.trophy-showcase h2{font-size:26px; margin-bottom:16px; color:var(--gold);}
.trophy-showcase p{color:var(--muted); font-size:15.5px; margin-bottom:16px;}
@media (max-width:800px){
  .trophy-showcase{grid-template-columns:1fr;}
}

/* ---------- AWARD LOG ---------- */
.award-log{display:flex; flex-direction:column;}
.award-row{
  display:grid;
  grid-template-columns:140px 1fr 200px;
  gap:24px;
  padding:26px 0;
  border-top:1px solid var(--line);
  align-items:start;
}
.award-row:last-child{border-bottom:1px solid var(--line);}
.award-row .date{
  font-family:'JetBrains Mono',monospace; font-size:12px; color:var(--gold);
  letter-spacing:0.08em; padding-top:3px;
}
.award-row .event{font-family:'Rajdhani',sans-serif; font-weight:600; font-size:17px; margin-bottom:6px;}
.award-row .reason{color:var(--muted); font-size:14.5px;}
.award-row .winner{
  font-family:'JetBrains Mono',monospace; font-size:13px;
  color:var(--white); text-align:right; padding-top:3px;
}
.award-row.tbc .winner{color:var(--muted); font-style:italic;}
@media (max-width:700px){
  .award-row{grid-template-columns:1fr; gap:6px;}
  .award-row .winner{text-align:left;}
}

/* ---------- LIVERY PREVIEW GRID ---------- */
.livery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(230px,1fr));
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
  margin-top:8px;
}
.livery-grid a{
  background:var(--panel);
  display:block;
  position:relative;
}
.livery-grid figure{
  aspect-ratio:4/3;
  overflow:hidden;
  background:var(--void);
}
.livery-grid img{
  width:100%; height:100%; object-fit:cover;
  transition:transform 0.4s ease;
}
.livery-grid a:hover img{transform:scale(1.06);}
.livery-grid figcaption{
  padding:14px 16px;
  font-family:'Rajdhani',sans-serif;
  font-weight:600;
  font-size:14.5px;
  color:var(--white);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
}
.livery-grid a:hover figcaption{color:var(--gold);}
.livery-grid figcaption .arrow{
  font-family:'JetBrains Mono',monospace;
  font-size:12px;
  color:var(--muted);
  flex-shrink:0;
}
.livery-grid a:hover figcaption .arrow{color:var(--gold);}

/* ---------- LIVERY ARCHIVE GRID (legacy text list, unused) ---------- */
.livery-archive{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
  margin-top:8px;
}
.livery-archive a{
  background:var(--panel);
  padding:20px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  font-family:'Rajdhani',sans-serif;
  font-weight:600;
  font-size:15px;
  letter-spacing:0.02em;
  transition:background 0.15s ease, color 0.15s ease;
}
.livery-archive a:hover{background:var(--panel-2); color:var(--gold);}
.livery-archive a .arrow{
  font-family:'JetBrains Mono',monospace;
  font-size:13px;
  color:var(--muted);
  flex-shrink:0;
}
.livery-archive a:hover .arrow{color:var(--gold);}

/* ---------- NUMBER 13 BADGE ---------- */
.nav-number{
  height:26px; width:auto;
  opacity:0.9;
  margin-left:2px;
}
.hero-number{
  position:absolute;
  z-index:1;
  width:90px; height:auto;
  opacity:0.14;
  right:6%;
  top:14%;
  pointer-events:none;
  filter:grayscale(0.15);
}
.footer-number{
  height:20px; width:auto;
  opacity:0.75;
  vertical-align:-4px;
  margin-left:8px;
}
@media (max-width:700px){
  .hero-number{width:56px; top:8%; right:8%;}
}

/* ---------- SPONSOR FEATURE (home) ---------- */
.sponsor-feature{
  background:var(--panel);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:70px 32px;
  text-align:center;
}
.sponsor-feature .eyebrow{
  font-family:'JetBrains Mono',monospace; font-size:12px; letter-spacing:0.3em;
  text-transform:uppercase; color:var(--gold); margin-bottom:22px;
}
.sponsor-feature img{
  max-width:280px; width:60%; margin:0 auto 26px;
  filter:grayscale(0.1);
}
.sponsor-feature p{color:var(--muted); max-width:520px; margin:0 auto 6px; font-size:16px;}
.sponsor-feature .slogan{
  font-family:'Rajdhani',sans-serif; font-weight:600; color:var(--white);
  font-size:20px; text-transform:uppercase; letter-spacing:0.02em; margin-top:18px;
}

/* ---------- CONTACT ---------- */
.contact-wrap{display:grid; grid-template-columns:0.9fr 1.1fr; gap:60px;}
.contact-line{
  display:flex; gap:14px; padding:14px 0; border-top:1px solid var(--line); font-size:15px;
}
.contact-line:last-of-type{border-bottom:1px solid var(--line);}
.contact-line .k{
  font-family:'JetBrains Mono',monospace; color:var(--gold); width:90px; flex-shrink:0;
  font-size:12px; letter-spacing:0.1em; text-transform:uppercase; padding-top:2px;
}
form{display:flex; flex-direction:column; gap:18px;}
.field label{
  display:block; font-family:'JetBrains Mono',monospace; font-size:11px;
  letter-spacing:0.12em; text-transform:uppercase; color:var(--muted); margin-bottom:8px;
}
.field input,.field textarea{
  width:100%; background:var(--void); border:1px solid var(--line); color:var(--white);
  padding:13px 16px; font-family:'Inter',sans-serif; font-size:15px; border-radius:2px;
  transition:border-color 0.2s;
}
.field input:focus,.field textarea:focus{outline:none; border-color:var(--gold);}
.field textarea{min-height:120px; resize:vertical;}
form .btn-primary{align-self:flex-start; border:none; cursor:pointer;}

/* ---------- FOOTER ---------- */
footer.site-footer{border-top:1px solid var(--line); padding:36px 0;}
.footer-row{
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px;
}
.footer-links{display:flex; gap:24px; font-size:13px; color:var(--muted); flex-wrap:wrap;}
.footer-links a:hover{color:var(--gold);}
.footer-copy{font-family:'JetBrains Mono',monospace; font-size:12px; color:var(--muted);}

/* ---------- ANTHEM WIDGET ---------- */
.anthem-widget{
  position:fixed;
  left:50%; bottom:26px;
  transform:translateX(-50%);
  z-index:300;
  display:flex; align-items:center; gap:14px;
  background:rgba(19,19,21,0.94);
  border:1px solid var(--gold);
  backdrop-filter:blur(8px);
  padding:12px 26px 12px 12px;
  border-radius:999px;
  cursor:pointer;
  box-shadow:0 8px 30px rgba(0,0,0,0.5), 0 0 0 0 rgba(212,167,44,0.4);
  transition:transform 0.2s ease, box-shadow 0.2s ease;
  user-select:none;
  animation:beacon 2.6s ease-in-out infinite;
}
.anthem-widget:hover{transform:translateX(-50%) translateY(-3px);}
.anthem-widget.playing{animation:none;}
.anthem-widget .dot{
  width:44px; height:44px; border-radius:50%;
  background:var(--gold); color:var(--void);
  display:flex; align-items:center; justify-content:center;
  font-size:16px; flex-shrink:0;
}
.anthem-widget .label{
  font-family:'Rajdhani',sans-serif; font-weight:600; font-size:15px; letter-spacing:0.06em;
  text-transform:uppercase; color:var(--white); white-space:nowrap;
}
.anthem-widget .bars{
  display:flex; align-items:flex-end; gap:3px; height:16px; margin-right:2px;
}
.anthem-widget .bars span{
  width:3px; background:var(--gold); height:4px; border-radius:1px;
  animation:eqbar 0.9s ease-in-out infinite;
  animation-play-state:paused;
}
.anthem-widget.playing .bars span{animation-play-state:running;}
.anthem-widget .bars span:nth-child(1){animation-delay:0s;}
.anthem-widget .bars span:nth-child(2){animation-delay:0.15s;}
.anthem-widget .bars span:nth-child(3){animation-delay:0.3s;}
@keyframes eqbar{
  0%,100%{height:4px;}
  50%{height:16px;}
}
@keyframes beacon{
  0%,100%{box-shadow:0 8px 30px rgba(0,0,0,0.5), 0 0 0 0 rgba(212,167,44,0.35);}
  50%{box-shadow:0 8px 30px rgba(0,0,0,0.5), 0 0 0 10px rgba(212,167,44,0);}
}
@media (max-width:600px){
  .anthem-widget{bottom:16px; padding:10px 20px 10px 10px;}
  .anthem-widget .dot{width:38px; height:38px;}
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline:2px solid var(--gold); outline-offset:2px;
}

@media (max-width:860px){
  .contact-wrap{grid-template-columns:1fr; gap:36px;}
  .cards{grid-template-columns:1fr;}
  .post-row{grid-template-columns:1fr; gap:8px;}
}
