/* ---------------------------------------------------------------------------
   stevieculture.com — riddimBank's black house style, Stevie's identity.
   Deliberately self-contained: no shared stylesheet, no shared nav, nothing
   that ties this page's fate to the riddimbank.com build.
   --------------------------------------------------------------------------- */
*{margin:0;padding:0;box-sizing:border-box}
:root{
  --bg:#0A0A0A; --panel:#141414; --line:#262626;
  --ink:#ffffff; --soft:#C8C8C8; --dim:#8f8f8f;
  --green:#1DB954; --gold:#E8A317;
}
body{
  background:var(--bg); color:var(--ink); line-height:1.6;
  font-family:HelveticaNeue,Arial,'Open Sans','Helvetica Neue',Helvetica,sans-serif;
  -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
  display:flex;flex-direction:column;min-height:100vh;min-height:100dvh;
}
a{color:var(--green)}
h1,h2{font-family:'Archivo Black',sans-serif;font-weight:400;font-synthesis:none;line-height:1.2}

.hero{border-bottom:1px solid var(--line);padding:26px 20px;text-align:center;background:#0d0d0d}
/* The logo is only 192x84 on Simvoly's CDN — that is the largest copy that
   exists, the ?width=600 request just returns the original. So it is displayed
   at its native width and no larger; blowing it up to 280px would only make it
   soft. The wordmark below is the fallback if the file ever goes missing. */
.hero-logo{width:192px;max-width:70%;height:auto}
.wordmark{
  font-family:'Archivo Black',sans-serif;font-weight:400;font-synthesis:none;
  font-size:clamp(1.6rem,6vw,2.2rem);line-height:1.15;letter-spacing:.01em;
}

main{flex:1 0 auto;width:100%;max-width:760px;margin:0 auto;padding:36px 20px 48px}

.intro{display:flex;gap:26px;align-items:center;margin-bottom:34px;flex-wrap:wrap}
/* A 1000x664 environmental portrait — both his outstretched arms and the
   redwood behind him are the picture. A 190px circle would crop all of that
   away, so it is shown whole in a rounded rectangle instead. aspect-ratio
   holds the space before the file loads, so nothing jumps. */
.portrait{
  width:270px;max-width:100%;height:auto;aspect-ratio:1000/664;object-fit:cover;
  border-radius:10px;flex:0 0 auto;background:#1c1c1c;border:1px solid var(--line);
}
.intro-text{flex:1 1 260px;min-width:0}
h1{font-size:clamp(1.7rem,5vw,2.4rem);margin-bottom:6px}
.tagline{color:var(--soft);margin-bottom:10px}
.quote{color:var(--gold);font-size:1.15rem}

.bio p{color:var(--soft);margin-bottom:16px}
.bio p:first-child{font-size:1.0625rem}

section{margin-bottom:40px}
h2{font-size:1.25rem;color:var(--green);margin-bottom:10px}

.banks-lede{color:var(--dim);font-size:.9375rem;margin-bottom:18px}
.bank{
  display:block;background:var(--panel);border:1px solid var(--line);border-radius:10px;
  padding:18px 20px;text-decoration:none;color:var(--ink);margin-bottom:12px;
  transition:border-color .15s ease,background .15s ease;
}
.bank:hover{border-color:#3d3d3d;background:#181818}
.bank-feature{border-color:rgba(29,185,84,.45)}
.bank-feature:hover{border-color:var(--green)}
.bank-tag{
  display:inline-block;font-size:.6875rem;letter-spacing:.09em;text-transform:uppercase;
  color:#0A0A0A;background:var(--green);border-radius:3px;padding:2px 7px;margin-bottom:8px;font-weight:700;
}
.bank-name{display:block;font-size:1.0625rem;font-weight:600;margin-bottom:4px}
.bank-note{display:block;color:var(--dim);font-size:.9375rem;line-height:1.5}
.bank-row{display:flex;gap:12px;flex-wrap:wrap}
.bank-row .bank{flex:1 1 220px;margin-bottom:0}

.link-grid{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:18px}
.lnk{
  display:inline-flex;align-items:center;min-height:46px;padding:0 20px;
  background:var(--panel);border:1px solid var(--line);border-radius:60px;
  color:var(--ink);text-decoration:none;font-size:.9375rem;
}
.lnk:hover{border-color:var(--green);color:var(--green)}
.irie{width:100%;max-width:460px;height:auto;border-radius:8px;display:block}

.contact-lede{color:var(--dim);margin-bottom:18px}
.form{display:flex;flex-direction:column;gap:14px;max-width:520px}
.form label{display:flex;flex-direction:column;gap:6px;color:var(--soft);font-size:.9375rem}
.form input,.form textarea{
  background:#181818;border:1px solid #333;border-radius:8px;color:var(--ink);
  padding:12px 14px;font-size:16px;font-family:inherit;width:100%;
}
.form input:focus,.form textarea:focus{outline:none;border-color:var(--green)}
.form textarea{resize:vertical;min-height:120px}
/* The honeypot must be genuinely invisible but NOT display:none — some bots
   skip hidden fields, and screen readers are handled by aria-hidden. */
.gotcha{position:absolute!important;left:-9999px!important;width:1px;height:1px;opacity:0}
.btn{
  background:var(--green);color:#fff;border:0;border-radius:60px;padding:14px 32px;
  font-size:16px;font-weight:700;font-family:inherit;cursor:pointer;align-self:flex-start;
}
.btn:hover{background:#1ed760}
.btn[disabled]{opacity:.5;cursor:default}
.form-msg{color:var(--dim);font-size:.9375rem;min-height:1.2em}
.form-msg.ok{color:var(--green)}

footer{
  flex-shrink:0;border-top:1px solid var(--line);padding:22px 20px;text-align:center;
  color:var(--dim);font-size:.875rem;
}
.fine{margin-top:4px;font-size:.8125rem}

@media(max-width:640px){
  main{padding:26px 16px 36px}
  .intro{gap:18px}
  .portrait{width:100%}
}
