/*
Theme Name: Henry Sidebar Persona
Theme URI: https://example.com/henry-sidebar-persona
Author: ChatGPT
Description: Personal brand theme with a fixed left sidebar, bold quote hero, and three feature cards. Inspired by the provided screenshot description.
Version: 1.0.0
License: GPL-2.0-or-later
Text Domain: henry-sidebar-persona
*/
:root{
  --bg:#0a0a0c;
  --panel:#0f0f12;
  --ink:#f2f2f6;
  --muted:#b9b9c2;
  --accent:#ffd400;
  --accent-ink:#0b0b0d;
  --radius:16px;
  --max:1200px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.6;
}
a{color:var(--ink); text-decoration:none}
a:hover{opacity:.9}
img{max-width:100%; height:auto; display:block}

.layout{
  display:flex;
  min-height:100vh;
}
.sidebar{
  width:280px; min-width:280px;
  background:#0b0b0e;
  border-right:1px solid rgba(255,255,255,.07);
  position:sticky; top:0; align-self:flex-start;
  height:100vh; padding:24px 18px;
  display:flex; flex-direction:column; gap:18px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:800; letter-spacing:.3px;
}
.brand .sig{width:120px; height:30px; background:linear-gradient(90deg,#fff,#aaa); clip-path: polygon(0 60%,8% 40%,18% 65%,28% 35%,40% 60%,52% 30%,66% 65%,80% 45%,92% 70%,100% 50%);}
.nav-primary{display:flex; flex-direction:column; gap:12px; margin-top:12px; font-weight:700}
.nav-primary a{padding:8px 6px; border-radius:10px}
.search-and-social{margin-top:auto; display:flex; flex-direction:column; gap:12px}
.search-form{display:flex; gap:8px}
.search-form input{flex:1; padding:10px 12px; border-radius:10px; border:1px solid rgba(255,255,255,.12); background:#0e0e12; color:var(--ink)}
.socials{display:grid; grid-template-columns:repeat(5,1fr); gap:10px}
.socials a{display:grid; place-items:center; border:1px solid rgba(255,255,255,.12); border-radius:12px; padding:8px; font-size:14px}

.main{
  flex:1;
}
.container{max-width:var(--max); margin:0 auto; padding:0 24px}

.hero-quote{
  background:#17171c;
  border-bottom:1px solid rgba(255,255,255,.08);
  display:grid; place-items:center; text-align:center; padding:32px 16px;
}
.hero-quote .line{font-size:40px; font-weight:900; line-height:1.15; text-transform:uppercase}
.hero-quote .who{display:inline-block; margin-top:10px; background:var(--accent); color:var(--accent-ink); font-weight:900; padding:6px 10px; border-radius:6px}

.feature-trio{
  display:grid; grid-template-columns:repeat(3,1fr); gap:18px;
  padding:24px; margin:0 0 16px 0;
}
@media(max-width:960px){
  .sidebar{display:none}
  .feature-trio{grid-template-columns:1fr}
  .container{padding:0 16px}
}
.card{
  position:relative; border:1px solid rgba(255,255,255,.08); border-radius:16px; overflow:hidden; background:var(--panel);
}
.card .thumb{aspect-ratio:16/9; background:#0f0f14; overflow:hidden}
.card .thumb img{width:100%; height:100%; object-fit:cover}
.card .body{padding:14px}
.card h3{margin:.3em 0 0 0; font-size:22px; letter-spacing:.3px}
.card .meta{color:var(--muted); font-size:14px}

.section{padding:24px}
.section-head{display:flex; align-items:end; justify-content:space-between; margin-bottom:12px}
.section-head h2{margin:0; font-size:28px}
.section-head a{font-size:14px; color:var(--muted)}

.grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px}
@media(max-width:960px){.grid{grid-template-columns:1fr}}

.footer{padding:24px; border-top:1px solid rgba(255,255,255,.08); color:var(--muted); font-size:14px}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
