:root{
  --ink:#111111;
  --paper:#f8f6f0;
  --muted:#66625c;
  --line:#ded8cd;
  --green:#1f7a4a;
  --acid:#d7ff53;
  --red:#e0443e;
  --blue:#255bff;
  --yellow:#f4c536;
  --shadow:0 18px 48px rgba(17,17,17,.11);
}
*{box-sizing:border-box}
body{
  margin:0;
  color:var(--ink);
  background:var(--paper);
  font-family:Arial,Helvetica,sans-serif;
  letter-spacing:0;
}
a{color:inherit;text-decoration:none}
button{
  font:inherit;
  border:0;
  cursor:pointer;
}
.masthead{
  background:#101010;
  color:#fff;
}
.nav{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:0 clamp(18px,4vw,56px);
  border-bottom:1px solid rgba(255,255,255,.12);
}
.brand,.nav-links{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand{
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:0;
}
.awww-mark{
  display:inline-flex;
  align-items:center;
  height:28px;
  padding:0 8px 2px;
  color:#111;
  background:var(--acid);
  border-radius:4px;
  font-weight:950;
  text-transform:lowercase;
}
.nav-logo{
  display:block;
  width:126px;
  height:28px;
  object-fit:contain;
  object-position:center;
  border-radius:4px;
  background:#fff;
  padding:2px;
}
.nav-links{
  color:rgba(255,255,255,.74);
  font-size:13px;
  text-transform:uppercase;
  font-weight:800;
}
.hero{
  min-height:360px;
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr);
  align-items:stretch;
}
.hero-copy{
  padding:clamp(42px,8vw,96px) clamp(20px,5vw,72px);
  align-self:end;
}
.eyebrow,.card-kicker{
  margin:0 0 10px;
  color:var(--acid);
  font-size:12px;
  line-height:1.2;
  text-transform:uppercase;
  font-weight:900;
}
h1{
  margin:0;
  max-width:780px;
  font-size:clamp(52px,8vw,112px);
  line-height:.86;
  letter-spacing:0;
}
.dek{
  max-width:560px;
  margin:22px 0 0;
  color:rgba(255,255,255,.72);
  font-size:18px;
  line-height:1.45;
}
.hero-photo{
  width:100%;
  height:100%;
  min-height:360px;
  object-fit:cover;
  object-position:center 36%;
}
main{
  width:min(1480px,100%);
  margin:0 auto;
  padding:24px clamp(14px,3vw,34px) 56px;
}
.identity-strip{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1px;
  margin:-34px 0 22px;
  background:var(--line);
  box-shadow:var(--shadow);
  position:relative;
  z-index:2;
}
.identity-strip div{
  min-height:92px;
  padding:18px;
  background:#fff;
}
.identity-strip span{
  display:block;
  margin-bottom:8px;
  color:var(--muted);
  font-size:11px;
  text-transform:uppercase;
  font-weight:900;
}
.identity-strip strong{
  display:block;
  font-size:15px;
  line-height:1.35;
}
.toolbar{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 22px;
}
.filter{
  height:38px;
  padding:0 14px;
  border:1px solid var(--line);
  border-radius:4px;
  background:#fff;
  color:#222;
  font-size:13px;
  font-weight:900;
}
.filter.active{
  background:#111;
  color:#fff;
  border-color:#111;
}
.grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
.sig-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:8px;
  overflow:hidden;
  min-width:0;
}
.sig-card.favorite{
  outline:3px solid var(--acid);
}
.card-topline{
  min-height:84px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  padding:18px;
  border-bottom:1px solid var(--line);
}
.card-kicker{
  color:var(--green);
  margin-bottom:6px;
}
h2{
  margin:0;
  font-size:20px;
  line-height:1.12;
  letter-spacing:0;
}
.style-pill{
  flex:0 0 auto;
  max-width:120px;
  padding:6px 8px;
  border-radius:4px;
  background:#f1eee7;
  color:#4b4741;
  font-size:11px;
  text-transform:uppercase;
  font-weight:900;
  text-align:center;
}
.sig-preview{
  min-height:190px;
  display:flex;
  align-items:center;
  overflow:auto;
  padding:24px 18px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0,0,0,.035) 1px, transparent 1px),
    #faf9f5;
  background-size:16px 16px;
}
.actions{
  display:flex;
  gap:8px;
  padding:14px 18px 18px;
}
.copy-btn,.select-btn{
  min-height:38px;
  padding:0 13px;
  border-radius:4px;
  font-size:13px;
  font-weight:900;
}
.copy-btn{
  background:#111;
  color:#fff;
}
.copy-btn.copied{
  background:var(--green);
}
.select-btn{
  background:#f1eee7;
  color:#222;
}
.html-output{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  opacity:0;
}
@media (max-width:980px){
  .hero{
    grid-template-columns:1fr;
  }
  .hero-copy{
    order:2;
    padding-top:38px;
  }
  .hero-photo{
    order:1;
    max-height:360px;
  }
  .identity-strip{
    grid-template-columns:repeat(2,minmax(0,1fr));
    margin-top:0;
  }
  .grid{
    grid-template-columns:1fr;
  }
}
@media (max-width:560px){
  .nav{
    align-items:flex-start;
    flex-direction:column;
    padding-top:18px;
    padding-bottom:18px;
  }
  .identity-strip{
    grid-template-columns:1fr;
  }
  .actions{
    flex-direction:column;
  }
}
