/* Trench Gorilla Media — shared styles
   Brand: black / red / gold, matching the existing Trench Gorillas identity
   already live on Wix and Instagram. */

:root{
  --black:#0A0A0A;
  --coal:#141414;
  --red:#C8102E;
  --gold:#C9A227;
  --bone:#EFEAE2;
  --smoke:#8A8580;
  --line: rgba(255,255,255,.09);
}

*{box-sizing:border-box;margin:0;padding:0}
html{-webkit-text-size-adjust:100%}
body{
  background:var(--black);
  color:var(--bone);
  font-family:'Barlow',system-ui,sans-serif;
  line-height:1.55;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
.wrap{max-width:1040px;margin:0 auto;padding:0 22px}

/* ---------- header / nav ---------- */
header.site{
  border-bottom:1px solid rgba(201,162,39,.28);
  position:sticky;
  top:0;
  background:rgba(10,10,10,.92);
  backdrop-filter:blur(6px);
  z-index:20;
}
.site-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
}
.mark{
  font-family:'Anton',sans-serif;
  font-size:20px;
  letter-spacing:.02em;
  line-height:1;
}
.mark span{color:var(--red)}
nav.links{
  display:none;
  gap:26px;
  font-family:'Barlow Condensed',sans-serif;
  font-size:15px;
  letter-spacing:.1em;
}
nav.links a{color:var(--smoke)}
nav.links a:hover, nav.links a.active{color:var(--gold)}
.menu-btn{
  display:block;
  background:none;
  border:1px solid var(--line);
  color:var(--bone);
  padding:8px 12px;
  font-family:'Barlow Condensed',sans-serif;
  font-size:14px;
  letter-spacing:.1em;
}
nav.mobile{
  display:none;
  flex-direction:column;
  border-top:1px solid var(--line);
  padding:14px 0;
  gap:14px;
  font-family:'Barlow Condensed',sans-serif;
  font-size:16px;
  letter-spacing:.08em;
}
nav.mobile.open{display:flex}
nav.mobile a{color:var(--smoke)}
nav.mobile a.active{color:var(--gold)}

@media (min-width:760px){
  nav.links{display:flex}
  .menu-btn{display:none}
}

/* ---------- hero ---------- */
.hero{padding:56px 0 40px}
.hero h1{
  font-family:'Anton',sans-serif;
  font-size:clamp(38px,10vw,76px);
  line-height:.96;
  letter-spacing:-.01em;
}
.hero h1 em{color:var(--red);font-style:normal}
.hero p{
  margin-top:18px;
  max-width:54ch;
  color:var(--smoke);
  font-size:17px;
}
.teams{display:flex;gap:6px;margin-top:28px}
.teams i{display:block;height:5px;flex:1;background:var(--red)}
.teams i:nth-child(2){background:var(--gold)}
.teams i:nth-child(3){background:#3A3A3A}
.teams i:nth-child(4){background:var(--bone)}

/* ---------- section heading ---------- */
.section-head{
  padding-top:52px;
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.section-head h2{
  font-family:'Anton',sans-serif;
  font-size:clamp(28px,7vw,42px);
  line-height:1;
}
.section-head .tag{
  font-family:'Barlow Condensed',sans-serif;
  letter-spacing:.16em;
  color:var(--gold);
  font-size:14px;
}

/* ---------- brand stack (3 cards) ---------- */
.stack{
  display:grid;
  gap:1px;
  background:var(--line);
  margin-top:24px;
  border:1px solid var(--line);
}
.stack a{
  background:var(--black);
  padding:28px 24px;
  display:block;
}
.stack a:hover{background:var(--coal)}
.stack .k{
  font-family:'Barlow Condensed',sans-serif;
  letter-spacing:.14em;
  color:var(--gold);
  font-size:13px;
}
.stack h3{
  font-family:'Anton',sans-serif;
  font-size:26px;
  margin-top:8px;
}
.stack p{color:var(--smoke);margin-top:8px;font-size:15px}

@media (min-width:760px){
  .stack{grid-template-columns:repeat(3,1fr)}
}

/* ---------- featured article card ---------- */
.feature{
  margin-top:24px;
  border:1px solid var(--line);
  padding:30px 26px;
  position:relative;
}
.feature::before{
  content:"";
  position:absolute;
  top:0;left:0;
  width:44px;height:4px;
  background:var(--red);
}
.feature .k{
  font-family:'Barlow Condensed',sans-serif;
  letter-spacing:.16em;
  color:var(--gold);
  font-size:13px;
}
.feature h3{
  font-family:'Anton',sans-serif;
  font-size:clamp(26px,6vw,38px);
  margin-top:10px;
  line-height:1.02;
}
.feature p{color:var(--smoke);margin-top:12px;max-width:60ch}
.feature .go{
  display:inline-block;
  margin-top:18px;
  font-family:'Barlow Condensed',sans-serif;
  letter-spacing:.12em;
  color:var(--bone);
  border-bottom:2px solid var(--red);
  padding-bottom:2px;
}

/* ---------- stats bar ---------- */
.stats{
  margin-top:52px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  display:grid;
  grid-template-columns:repeat(2,1fr);
}
.stats div{
  padding:22px 18px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.stats div:nth-child(2n){border-right:none}
.stats b{
  display:block;
  font-family:'Anton',sans-serif;
  font-size:30px;
  color:var(--gold);
}
.stats span{
  font-family:'Barlow Condensed',sans-serif;
  letter-spacing:.1em;
  font-size:13px;
  color:var(--smoke);
}
@media (min-width:760px){
  .stats{grid-template-columns:repeat(4,1fr)}
  .stats div:nth-child(2n){border-right:1px solid var(--line)}
  .stats div:last-child{border-right:none}
}

/* ---------- article list (blog.html) ---------- */
.post-row{
  border-top:1px solid var(--line);
  padding:22px 0;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.post-row:last-child{border-bottom:1px solid var(--line)}
.post-row .k{
  font-family:'Barlow Condensed',sans-serif;
  letter-spacing:.14em;
  color:var(--gold);
  font-size:13px;
}
.post-row h3{font-family:'Anton',sans-serif;font-size:22px}
.post-row p{color:var(--smoke);font-size:15px}

/* ---------- article body (article pages) ---------- */
.article-head{padding:46px 0 10px}
.article-head .k{
  font-family:'Barlow Condensed',sans-serif;
  letter-spacing:.16em;
  color:var(--gold);
  font-size:13px;
}
.article-head h1{
  font-family:'Anton',sans-serif;
  font-size:clamp(34px,9vw,58px);
  line-height:1.0;
  margin-top:10px;
}
.byline{color:var(--smoke);font-size:14px;margin-top:14px}
.article-body{
  padding:26px 0 60px;
  max-width:66ch;
}
.article-body p{margin-bottom:18px;font-size:17px}
.article-body h2{
  font-family:'Anton',sans-serif;
  font-size:26px;
  margin:34px 0 14px;
}
.article-body h3{
  font-family:'Anton',sans-serif;
  font-size:20px;
  margin:26px 0 10px;
  color:var(--gold);
}
.article-body ul{margin:0 0 18px 20px}
.article-body li{margin-bottom:6px;font-size:16px}
.article-body .sig{
  margin-top:34px;
  padding-top:20px;
  border-top:1px solid var(--line);
  color:var(--smoke);
  font-size:14px;
}

/* ---------- awards grid ---------- */
.award-grid{
  margin-top:24px;
  display:grid;
  gap:24px;
}
.award-card{border:1px solid var(--line)}
.award-card img{width:100%;display:block}
.award-meta{padding:18px 20px}
.award-meta .k{
  font-family:'Barlow Condensed',sans-serif;
  letter-spacing:.14em;
  color:var(--gold);
  font-size:13px;
}
.award-meta h3{font-family:'Anton',sans-serif;font-size:24px;margin-top:6px}
.award-meta p{color:var(--smoke);margin-top:8px;font-size:15px}
@media (min-width:760px){
  .award-grid{grid-template-columns:repeat(2,1fr)}
}

/* ---------- empty state ---------- */
.empty{
  margin-top:24px;
  border:1px dashed rgba(201,162,39,.35);
  padding:40px 26px;
  text-align:center;
}
.empty h3{
  font-family:'Anton',sans-serif;
  font-size:24px;
  color:var(--gold);
}
.empty p{color:var(--smoke);margin-top:10px;max-width:44ch;margin-left:auto;margin-right:auto}

/* ---------- rate table ---------- */
.rates{margin-top:24px;border:1px solid var(--line)}
.rate-row{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  padding:16px 20px;
  border-top:1px solid var(--line);
  gap:16px;
}
.rate-row:first-child{border-top:none}
.rate-row .what{font-size:16px}
.rate-row .price{
  font-family:'Anton',sans-serif;
  font-size:20px;
  color:var(--gold);
  white-space:nowrap;
}

/* ---------- pillars (train.html method) ---------- */
.pillars{
  display:grid;
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
  margin-top:24px;
}
.pillars div{background:var(--black);padding:24px}
.pillars .k{
  font-family:'Barlow Condensed',sans-serif;
  letter-spacing:.14em;
  color:var(--red);
  font-size:13px;
}
.pillars h3{font-family:'Anton',sans-serif;font-size:20px;margin-top:8px}
.pillars p{color:var(--smoke);margin-top:8px;font-size:15px}
@media (min-width:760px){.pillars{grid-template-columns:repeat(3,1fr)}}

/* ---------- cta band ---------- */
.cta{
  margin-top:52px;
  padding:40px 26px;
  border:1px solid var(--line);
  text-align:center;
}
.cta h3{font-family:'Anton',sans-serif;font-size:clamp(26px,7vw,38px)}
.cta p{color:var(--smoke);margin-top:10px}
.cta a.btn{
  display:inline-block;
  margin-top:20px;
  padding:14px 28px;
  background:var(--red);
  color:var(--bone);
  font-family:'Barlow Condensed',sans-serif;
  letter-spacing:.12em;
  font-size:15px;
}

/* ---------- footer ---------- */
footer.site{padding:52px 0 64px;border-top:1px solid var(--line);margin-top:60px}
footer.site .creed{
  font-family:'Anton',sans-serif;
  font-size:clamp(22px,6vw,32px);
  line-height:1.05;
}
footer.site .creed em{font-style:normal;color:var(--red)}
footer.site .fine{margin-top:18px;color:var(--smoke);font-size:14px}
footer.site .fine a{color:var(--gold)}
