:root{
  --bg:#000;
  --text:#f6f6f7;
  --muted:rgba(246,246,247,.65);
  --muted2:rgba(246,246,247,.48);
  --gold:#d4af37;
  --stroke:rgba(255,255,255,.10);
  --cardStroke:rgba(255,255,255,.08);
  --shadow: 0 18px 50px rgba(0,0,0,.65);
  --r:22px;
  --max:1200px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.92}

.container{max-width:var(--max);margin:0 auto;padding:28px 16px 56px}

header{
  display:flex;align-items:flex-end;justify-content:space-between;gap:14px;flex-wrap:wrap;
  padding:14px 0 18px;
  border-bottom:1px solid var(--stroke);
}

.brand{display:flex;flex-direction:column;gap:6px}
.brand .title{
  font-family: "Playfair Display", "Ibarra Real Nova", ui-serif, Georgia, "Times New Roman", serif;
  letter-spacing: 2.8px;
  font-weight: 600;
  font-size: 30px;
  margin:0;
}
.brand .sub{
  color:var(--muted);
  font-size:13px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.pitch{
  max-width: 64ch;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
}

.pitch strong{
  color: rgba(246,231,176,.9);
  font-weight: 650;
}

.email{
  display:inline-block;
  margin-top:10px;
  padding:9px 14px;
  border-radius: 999px;
  border:1px solid rgba(212,175,55,.35);
  background: rgba(212,175,55,.10);
  color: rgba(246,231,176,.95);
  font-size: 13px;
  letter-spacing:.3px;
}

.grid{
  margin-top:26px;
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
}

.card{
  grid-column: span 4;
  position:relative;
  overflow:hidden;
  border-radius: var(--r);
  border:1px solid var(--cardStroke);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.02);
  transform: translateZ(0);
  transition: transform .18s ease, border-color .18s ease;
}
.card:hover{
  transform: translateY(-2px);
  border-color: rgba(212,175,55,.28);
}

.thumb{
  aspect-ratio: 4 / 5;
  width:100%;
  background:#050508;
}
.thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.70) 86%);
  pointer-events:none;
}

.meta{
  position:absolute;
  left:16px;
  right:16px;
  bottom:14px;
}

.meta h3{
  margin:0;
  font-family: "Playfair Display", "Ibarra Real Nova", ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 520;
  letter-spacing: .4px;
  font-size: 18px;
}
.meta .line{
  margin-top:6px;
  display:flex;align-items:center;justify-content:space-between;gap:10px;flex-wrap:wrap;
  font-size: 12.5px;
  color: var(--muted);
}
.tag{
  display:inline-flex;align-items:center;gap:8px;
  padding:6px 10px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.26);
  backdrop-filter: blur(12px);
}
.tag.gold{
  border-color: rgba(212,175,55,.28);
  color: rgba(246,231,176,.88);
}

footer{
  margin-top:34px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.08);
  color: var(--muted2);
  font-size: 12.5px;
  display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;
}

@media (max-width: 980px){
  .card{grid-column: span 6}
}
@media (max-width: 620px){
  header{align-items:flex-start}
  .brand .title{font-size:26px;letter-spacing:2.2px}
  .pitch{font-size:13px}
  .grid{grid-template-columns: repeat(6, 1fr)}
  .card{grid-column: span 6}
}
