/* When It Gets Heavy — final site styles */
:root{
  --bg:#0f1113;
  --card:#1a1d20;
  --text:#f0eadf;
  --muted:#b8b2a7;
  --line:#2a2f34;
  --accent:#e6d9c3;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font:16px/1.6 "Inter",system-ui,Arial;
}
.wrap{max-width:1100px;margin:0 auto;padding:0 20px}

/* -------------------- HEADER -------------------- */
.site-header{
  position:sticky;
  top:0;
  backdrop-filter:saturate(120%) blur(6px);
  background:rgba(15,17,19,.6);
  border-bottom:1px solid var(--line);
  z-index:10;
}
.site-header .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  height:72px;
  padding:16px 24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--text);
  font-weight:700;
}

/* Header logo beside tagline */
.logo{
  width:48px;        /* balanced for all devices */
  height:auto;
  display:block;
  vertical-align:middle;
}

.brand-text{
  font-size:1.1rem;
  font-weight:500;
  color:var(--muted);
  display:inline;      /* show on all screens */
  white-space:nowrap;  /* keep on one line next to logo */
  font-style:italic;   /* reads like a tagline */
  letter-spacing:.3px;
}

/* Navigation */
.menu{
  margin-left:auto;
  display:flex;
  gap:18px;
}
.menu a{
  color:var(--text);
  text-decoration:none;
  font-weight:600;
  opacity:.9;
}
.menu a:hover{opacity:1}

/* Hamburger for mobile */
.hamburger{display:none;cursor:pointer;margin-left:auto}
.hamburger span{
  display:block;
  width:22px;
  height:2px;
  background:var(--text);
  margin:5px 0;
}

/* -------------------- HERO -------------------- */
.hero{
  border-bottom:1px solid var(--line);
  background:var(--card);
  padding:56px 0;
}
.hero-inner{
  display:grid;
  justify-items:center;
  gap:16px;
  text-align:center;
}
.hero-logo{
  width:220px;
  max-width:70vw;
  height:auto;
  margin-bottom:8px;
}
h1{
  margin:0;
  font-size:40px;
  letter-spacing:.3px;
}
.tagline{
  margin:0;
  color:var(--muted);
}
.cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:16px;
}
.btn{
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#111;
  color:var(--text);
  text-decoration:none;
  font-weight:700;
}
.btn:hover{background:#161a1d}
.player{
  margin-top:20px;
  width:100%;
  max-width:720px;
}
.player iframe{
  width:100%;
  height:200px;
  border:0;
  border-radius:12px;
  background:#000;
}

/* -------------------- SECTIONS -------------------- */
.about,.contact{
  padding:48px 0;
  border-bottom:1px solid var(--line);
}
h2{
  margin:0 0 12px;
  font-size:28px;
}

/* -------------------- FOOTER -------------------- */
.site-footer{
  padding:22px 0;
  color:var(--muted);
  text-align:center;
}

/* -------------------- RESPONSIVE -------------------- */
@media (max-width:900px){
  .menu{display:none}
  .hamburger{display:block}
  #nav-toggle:checked ~ .menu{
    display:flex;
    position:absolute;
    top:72px;
    left:0; right:0;
    gap:0;
    flex-direction:column;
    background:var(--card);
    padding:12px 20px;
    border-bottom:1px solid var(--line);
  }
  .menu a{padding:10px 0}
}

/* Tagline adjustment on narrow screens */
@media (max-width:600px){
  .brand-text{
    white-space:normal;
    font-size:1rem;
    text-align:left;
  }
}